Pay attention to our Valid and Useful Exam Reviews and take our Exam Torrent as your Study Material. With little time and energy investment, you have a High Efficiency Study experience. Pass your Actual Test with the help of our Actual Reviews.

2024 Realistic Verified Free Salesforce Platform-App-Builder Exam Questions [Q26-Q47]

Share

2024 Realistic Verified Free Salesforce Platform-App-Builder Exam Questions

Platform-App-Builder Real Exam Questions and Answers FREE


Salesforce Platform-App-Builder (Salesforce Certified Platform App Builder) Exam is a certification exam that verifies a candidate’s knowledge and expertise in building custom applications and functionality using the Salesforce platform. Platform-App-Builder exam is designed for individuals who wish to demonstrate their skills in developing, customizing, and deploying applications using Salesforce Lightning components, Apex code, and Visualforce pages.


Salesforce Platform-App-Builder (Salesforce Certified Platform App Builder) Certification Exam is designed for professionals who want to demonstrate their expertise in designing, building, and deploying custom applications using the Salesforce Platform. Salesforce Certified Platform App Builder certification exam is ideal for individuals who have experience in developing applications on the Salesforce Platform and want to validate their skills and knowledge. Platform-App-Builder exam covers a wide range of topics such as data modeling, security, user interface design, business logic, and automation. Salesforce Certified Platform App Builder certification exam is intended to test the candidate’s ability to design, build, and deploy custom applications that meet the business requirements of an organization.


In order to prepare for the Salesforce Platform-App-Builder exam, candidates should have a strong understanding of the Salesforce platform and its different features. They should also have experience building custom applications using declarative tools and code. There are many resources available to help individuals prepare for the exam, including study guides, practice exams, and online courses.

 

NEW QUESTION # 26
What are two capabilities of Schema Builder? Choose 2 answers

  • A. Editing custom settings
  • B. Showing selected objects on a page
  • C. Creating a new record type
  • D. Viewing page layouts in a new window

Answer: A,B


NEW QUESTION # 27
Which of the following is true in regards to the User Acceptance testing (UAT) step in a large enterprise application lifecycle? Choose 2 answers.

  • A. UAT can be used for end user testing or training
  • B. UAT come after Integration Testing
  • C. UAT comes before Integration testing
  • D. UAT is typically the last step before deploying changes to production

Answer: A,B


NEW QUESTION # 28
At UVC, the Account object has a MD relationship with an Invoice custom object. The app builder would like to change this to a lookup field, but is not able to do so. What could be causing this?

  • A. The Invoice must have at least one MD field for reporting
  • B. The Account is included in the workflow on the Invoice Object
  • C. The invoice records have existing values in the Account
  • D. The Account record includes invoice roll-up summary fields

Answer: D


NEW QUESTION # 29
Universal Containers has created two custom objects called Seminars and Attendees. Organization-wide defaults for these objects have been set to Private. Universal Containers wants to set up a new Junction object between these custom objects. A select group of users should be able to edit records in the Junction object.
Which two steps should an app builder take to configure the proper security?

  • A. Sat lookup filters on both Junction object relationship field.
  • B. Create an owner-based sharing rule that gives Road action to the junction object.
  • C. Set Sharing Settings to Road Only on both Master-Detail relationship fields.
  • D. Create owner-based sharing rules that give Read access to the master objects.

Answer: B,C

Explanation:
A: Setting Sharing Settings to Read Only on both Master-Detail relationship fields ensures that users can view but not edit the master records from the junction object.
D: Creating an owner-based sharing rule that gives Read access to the junction object allows specific users or groups to access and edit records in the Junction object while maintaining the private OWD setting. Reference:
Salesforce Help - Sharing Settings


NEW QUESTION # 30
Universal Container's app builder needs to display an account's rating on all contacts related to that account.
Which formula is valid in a text formula field on the contact to display the appropriate value? (Choose two.)

  • A. Text(Account.Rating)
  • B. CASE(Account.Rating, "Hot", "Hot", "Warm", "Warm", "Cold", "Cold", "Not Rated")
  • C. Account.Rating
  • D. CASE(Account.Rating, Hot, Hot, Warm, Warm, Cold, Cold, Not Rated)

Answer: A,B


NEW QUESTION # 31
An app builder has created a custom Lightning App and wants to make it available to the internal users at Universal Containers.
Which two steps are necessary to accomplish this task? (Choose two.)

  • A. Create a subdomain using My Domain
  • B. Create a Visualforce page
  • C. Build a Custom Tab for the app
  • D. Upload the app to Static Resources

Answer: B,C

Explanation:
Explanation/Reference: https://developerforce.github.io/LightningNowWorkshop/Exercise_3.html


NEW QUESTION # 32
The app builder at Ursa Major Solar has just created a master-detail relationship between a parent object Galaxy__c and child object Star__c.
What would be the effect of creating this type of relationship if users want to report on Galaxy__c with Star__c?

  • A. A new custom report type will need to be created for Galaxy__c with Star__c.
  • B. A Galaxy__c with Star__c report type will be automatically created.
  • C. A new custom report type will need to be created for Star__c with lookup fields from Galaxy__c.
  • D. A Star__c report type with Galaxy__c as a field will be automatically created.

Answer: A


NEW QUESTION # 33
An app builder has created a change set and deployed a report from their development sandbox for User Acceptance Testing. When the app builder runs the report, no data is returned.
What can be a reason for this?

  • A. Reports have to be deployed with Salesforce DX.
  • B. Reports have to be manually re-created in each environment.
  • C. Data is unable to be deployed with change sets.
  • D. Data is deployed when added to a change sets.

Answer: C

Explanation:
Explanation
Data is unable to be deployed with change sets. Change sets are used to deploy metadata components such as custom objects, fields, workflows, reports, etc. from one Salesforce org to another. However, change sets do not include any data or records from the source org. Users will need to use other tools such as Data Loader or Data Import Wizard to migrate data between orgs. [Source]


NEW QUESTION # 34
A junction object has two Master-Detail relationships. What happens to a junction object record when either associated master record is deleted?

  • A. The master record can't be deleted if it has a child record.
  • B. The record is permanently deleted and can't be restored.
  • C. The record is deleted and placed in the recycle bin.
  • D. The look-up field on the junction object record is cleared.

Answer: C


NEW QUESTION # 35
An App Builder at UVC would like to prevent users from creating new records on an Account related list by overriding standard buttons. Which two should the App Builder consider before overriding standard buttons?

  • A. Standard buttons that are not available for overrides can still be hidden on page layouts
  • B. Standard buttons can be changed on lookup dialogs, list views, and search result layouts
  • C. Standard buttons can be overridden, relocated on the detail page, and relabeled
  • D. Standard buttons can be overridden with a Visualforce page

Answer: A,D

Explanation:
The app builder should consider two things before overriding standard buttons:
Standard buttons can be overridden with a Visualforce page. A Visualforce page is a web page that displays custom user interface elements using Visualforce markup and Apex code. A Visualforce page can be used to override a standard button and provide custom functionality or logic3.
Standard buttons that are not available for overrides can still be hidden on page layouts. A page layout is a layout that determines how fields, related lists, and buttons are arranged on a record detail or edit page. A page layout can be used to hide a standard button that cannot be overridden by removing it from the layout4. Option A and D are not things that the app builder should consider before overriding standard buttons.


NEW QUESTION # 36
The sales team receives a list of approximately 800 leads each morning from the marketing team. The marketing team does not know if any of the leads are currently in the pipeline and sends the entire list each morning.
Which tool should be used to import these leads into Salesforce while preventing the duplicates from being inserted?

  • A. Dataloaderio
  • B. Data Import Wizard
  • C. Manual entry
  • D. Data Loader

Answer: B

Explanation:
To import leads while preventing duplicates:
B . Data Import Wizard is the appropriate tool. The Data Import Wizard in Salesforce includes functionality to check for duplicates based on matching records by certain criteria (like email or lead ID) during the import process, thus preventing duplicate lead records from being created.
More details on using the Data Import Wizard can be found in the Salesforce Data Import Wizard guide.


NEW QUESTION # 37
The Director of Marketing at Northern Trail Outfitters wants the app builder to create a formula field that tracks how many days have elapsed since a contact was sent a marketing communication. The director is only interested in whole units.
Which function should be used to return a date for calculating the difference?

  • A. DATFTIMEVALUE()
  • B. TODAY()
  • C. DATEVALUE()
  • D. NOW()

Answer: B

Explanation:
TODAY() is the function that should be used to return a date for calculating the difference between today and the date a marketing communication was sent. According to the Salesforce documentation, "TODAY() returns the current date as a Date value." DATETIMEVALUE() converts a text value into a Date/Time value.
DATEVALUE() converts a Date/Time value into a Date value. NOW() returns the current Date/Time value.


NEW QUESTION # 38
The convert button on leads should NOT appear until the lead status picklist is set to a qualified. What should an app builder suggest to meet these requirements ?

  • A. Page layout, record types, process builder field update
  • B. Custom button, validation rule, record types
  • C. Picklist dependency, page layouts, record types
  • D. Process builder field update, quick action, record type

Answer: C


NEW QUESTION # 39
Which setting is available to customize the salesforce1 mobile app for branding ? Select 3

  • A. Action bar color
  • B. Notification and search icon
  • C. The image on loading page
  • D. Background color on loading page
  • E. Header and search bar color

Answer: C,D,E


NEW QUESTION # 40
A Cloud Kicks employee submitted an opportunity for approval by their manager.
What would happen if the employee attempts to edit the description field after submission?

  • A. User will be able to edit the name, but unable to edit the description.
  • B. User will be able to edit the description field only.
  • C. User will see the record is now owned by their manager.
  • D. User will be presented with a 'Record Lock' notification.

Answer: D


NEW QUESTION # 41
Universal Containers wants to rollout new product bundles with several pricing options. Pricing options include product-price bundles, account specific pricing and more. Which product satisfies the needs?

  • A. Lightning process builder
  • B. Custom AppExchange-app for product-pricing
  • C. Workflow on Opportunity/Opportunity Product
  • D. Formula fields on Opportunity/Opportunity Product

Answer: A,C,D


NEW QUESTION # 42
Cloud Kicks has leads owned by users and queues.
The sales manager wants the status to change to working when a user takes ownership.
What does an app builder need to have in the criteria to ensure the process runs without error?

  • A. NOT(ISBLANK([Lead].OwnerId))
  • B. [Lead].Owner:Queue.OwnerId Is Null = True
  • C. [Lead].Owner:User.Role Is Null = False
  • D. BEGINS([Lead].OwnerId, ,,005")

Answer: A


NEW QUESTION # 43
A developer wants to make sure that all fields on his new custom object are editable to all profiles.
What should be checked on field level security?

  • A. Disable Visible and Read-Only.
  • B. Enable Visible but Disable Read-Only.
  • C. Enable Visible and Read-Only.
  • D. Disable Visible but Enable Read-Only.

Answer: B


NEW QUESTION # 44
DreamHouse Realty wants to import its property records from an external system into Salesforce. The app builder will use an external ID field to house the property ID from the external system.
Which two details should the app builder know when using external ID fields?
Choose 2 answers

  • A. An external ID field can be a number field.
  • B. An external ID field can be a URL field.
  • C. An external IDfield can be a text field.
  • D. An external ID field can be a phone field.

Answer: A,C

Explanation:
Explanation
An external ID field can be a number field or a text field, but not a URL field or a phone field. A URL field is used to store web addresses and a phone field is used to store phone numbers. An external ID field is used to store unique identifiers from an external system and it can be used for upsert operations


NEW QUESTION # 45
After universal containers converted qualified leads. Sales reps need to be able to report on converted leads. How should an app builder support for this requirement ?

  • A. Assign the representative view and edit converted leads permission
  • B. Ensure the representative has read access to the original lead records
  • C. Create a custom report type with converted leads as the primary object
  • D. Enable preserve lead status in the lead conversion settings

Answer: D


NEW QUESTION # 46
An Alexa Skill Builder is trying to enable a skill in the developer console. The skill model builds without errors, but the Builder is unable to turn on testing.
What could be causing this?

  • A. The skill's slot types are invalid.
  • B. The skill does not have an endpoint
  • C. The skill does not have an invocation name
  • D. The skill does not have an example phrase

Answer: C

Explanation:
Explanation/Reference: https://developer.amazon.com/en-US/docs/alexa/devconsole/test-your-skill.html


NEW QUESTION # 47
......

Exam Dumps Platform-App-Builder Practice Free Latest Salesforce Practice Tests: https://www.examsreviews.com/Platform-App-Builder-pass4sure-exam-review.html

Platform-App-Builder Exam Questions | Real Platform-App-Builder Practice Dumps: https://drive.google.com/open?id=15keL4Kcq-nOQ_87n-SYM5-P859vFcwTb