Latest Platform-App-Builder Actual Free Exam Questions Updated 252 Questions [Q67-Q91]

Share

Latest Platform-App-Builder Actual Free Exam Questions Updated 252 Questions

Free Platform-App-Builder Exam Braindumps certification guide Q&A

NEW QUESTION # 67
When should a system administrator consider using the Salesforce AppExchange? (Choose two.)

  • A. When looking for pre-built custom applications and tools.
  • B. To submit ideas for Salesforce application enhancements.
  • C. When standard Salesforce functionality needs to be extended.
  • D. To find answers to Salesforce application questions.

Answer: A,C


NEW QUESTION # 68
Universal Containers wants to test code against a subnet of production data that is under 5 GB, Additionally, Universal Containers wants to refresh this sandbox every weekend.
Which type of sandbox should be used to accomplish this?

  • A. Developer
  • B. Full
  • C. Developer Pro
  • D. partial Copy

Answer: D


NEW QUESTION # 69
Which two are true statements about record types? (Choose two.)

  • A. They allow different picklist values for all picklist fields.
  • B. They can be enabled by profile and permission set.
  • C. They allow different page layouts and mandatory fields.
  • D. They can be used to control user role hierarchy.

Answer: B,C


NEW QUESTION # 70
Universal Containers conduct evaluations of their sales reps using a custom object consisting of numerical scores and executive comments. The company wants to ensure that only the sales reps, and their manager's executive can view the rep's evaluation record but the reps should not be able to view the executive comment field on their review. How can these requirement be met?

  • A. Use a private sharing model granting record access using custom setting; manage field access with page layouts and field level security
  • B. Use a private sharing model granting record access using hierarchy; manage field access with field-level security
  • C. Use a private sharing model granting record access using hierarchy; manage field access with record types and field-level security
  • D. Use a private sharing model granting record access using custom setting; manage field access with record types and page layouts

Answer: B

Explanation:
Explanation
To ensure that only the sales reps and their manager's executive can view the rep's evaluation record but the reps should not be able to view the executive comment field on their review, a private sharing model granting record access using hierarchy and field-level security should be used. A private sharing model means that only the owner of a record and users above them in the role hierarchy can view the record by default. Record access can be granted to other users using manual sharing, sharing rules, or Apex sharing. Field-level security controls which fields are visible or editable for different profiles or permission sets.


NEW QUESTION # 71
Universal Containers would like to automatically assign a specific permission set to new users.
Which two actions should be completed in order to meet this requirement? (Choose two.)

  • A. Create a workflow rule on the User object to assign a permission set.
  • B. Create an Approval process on the User object to assign a permission set.
  • C. Create a Flow on the User object to assign a permission set.
  • D. Create a Process on the User object to launch a flow.

Answer: C,D


NEW QUESTION # 72
Actions on a Lightning Page allow you to do which of the following?

  • A. Send email and delete or clone records.
  • B. Send email, create a task, and create or update records.
  • C. Send email, send outbound messages, and launch a flow.
  • D. Clone records, add users, and assign permissions.

Answer: B


NEW QUESTION # 73
An app builder wants to show groups as the last navigation menu item in the salesforce1 mobile app. however, the app builder is not able to select groups as one of the items on the drop-down menu. What could cause this?

  • A. Groups cannot be the last item in the navigation menu.
  • B. Groups is showing up in the recent section and not in the navigation menu
  • C. Groups is not included in the selecteCreate a criteria based sharing rule using the projects department that grd list for the navigation menu
  • D. Groups is included in the smart search items but not on the navigation menu

Answer: D

Explanation:
Groups Appears for organizations that have Chatter enabled. If you don't add this item to the navigation menu, groups are automatically included in the set of Smart Search Items instead and the Groups item is available from the Recent section.
https://developer.salesforce.com/docs/atlas.en-us.salesforce1.meta/salesforce1/customize_s1_nav_about.htm


NEW QUESTION # 74
Standard picklist fields can be controlling or dependent.

  • A. True
  • B. False

Answer: B

Explanation:
Standard picklist fields can be controlling fields but not dependent fields.


NEW QUESTION # 75
Universal Containers needs to update a field on an Account when an Opportunity Stage is changed to Closed Lost. What tools can we use to accomplish this requirement? (Choose 2)

  • A. Approval Process
  • B. Lightning Process Builder
  • C. Assignment Rule
  • D. Workflow Rule

Answer: B,D


NEW QUESTION # 76
An app builder at Northern Trad Outfitters created a sandbox template for Accounts, Projects, and Project Milestones to reconfigure some flows for the project management app.
Which type of testing environment should the app builder create?

  • A. Developer
  • B. Scratch Org
  • C. Partial Copy
  • D. Developer Pro

Answer: C

Explanation:
Partial Copy is the type of testing environment that the app builder should create to use a sandbox template for Accounts, Projects, and Project Milestones. According to the Salesforce documentation, "Partial Copy sandboxes copy your production org's configuration (metadata) and some of your production org's data as defined by a sandbox template." Developer, Developer Pro, and Scratch Org are not types of testing environments that support sandbox templates.


NEW QUESTION # 77
Universal Containers allows users to create standard reports on demand.
What are three considerations users should be aware of when creating a new report?
Choose 3 answers

  • A. The report type determines the types of records and fields that will be available.
  • B. Users can require that child objects exist for patent records using a cross filter.
  • C. Users will need to add the report to a shared folder for other users to see It.
  • D. Charts can be added to summary reports to provide a visualization.
  • E. Records will be available in the report regardless of security permissions

Answer: B,D,E


NEW QUESTION # 78
Which values must be defined when creating a new Opportunity stage? Choose 3

  • A. Type
  • B. Close date
  • C. Probability
  • D. Amount
  • E. Forecast category

Answer: A,C,E


NEW QUESTION # 79
Cloud Kicks wants to display 10 key fields at once in a separate section at the top of opportunity records on the desktop.
Which component should an app builder add to the record page to enable this functionality?

  • A. Custom Lightning Web Component
  • B. Accordion
  • C. Highlights Panel
  • D. Path

Answer: C

Explanation:
Highlights Panel. This is correct because the highlights panel component displays key fields from a record at the top of the page, and it can be configured to show up to 10 fields.


NEW QUESTION # 80
The Director of Customer Service wants to know when agents are overwhelmed with high-priority items in the support queue. The Director wants to receive a notification when a new case is open with the status of "New" for more than four business hours. Which automation process could be used to accomplish this? Choose 2 answers

  • A. Lightning Process Builder
  • B. Visual workflow
  • C. Scheduled Apex
  • D. Escalation rules

Answer: A,D


NEW QUESTION # 81
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. DATEVALUE()
  • B. TODAY()
  • C. NOW()
  • D. DATFTIMEVALUE()

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 # 82
Universal containers has a custom object that has a N:M relationship with opportunityLineItem carrying price and amount information. In order to compute total amounts and total prices per Opportunity using Rollup summary fields, what field type will you use.

  • A. Crossobject
  • B. Lookup
  • C. Junction
  • D. Master-Detail

Answer: D


NEW QUESTION # 83
A recently refreshed partial sandbox at Cloud Kicks has no data In the custom object Shipping. Checking In production, there are two million rows of data in the object.
What could be the reason the data Is missing?

  • A. The sandbox is still populating data.
  • B. The selected objects in the sandbox template.
  • C. The sandbox was refreshed too early.
  • D. The Partial sandbox is at capacity.

Answer: B


NEW QUESTION # 84
DreamHouse Realty wants to make sure an Opportunity has a field Expected_Close_Date_c populated before it is allowed to enter the qualified stage.
How should an app builder solution this request?

  • A. Record Type
  • B. Page Layout
  • C. Validation Rule
  • D. Activity History

Answer: C

Explanation:
A validation rule is a formula that evaluates the data in one or more fields and returns a value of "True" or "False". Validation rules verify that the data a user enters in a record meets the standards you specify before the user can save the record. In this case, a validation rule can be used to check if the Expected_Close_Date_c field is populated before the Opportunity stage is set to qualified


NEW QUESTION # 85
Universal Containers wants to match Opportunity data from Salesforce to the records in a financial database.
What is required to configure an indirect lookup relationship in Salesforce between the Salesforce Opportunity records and those in a financial database?

  • A. TEXT(Id)
  • B. CASESAFE(Id)
  • C. External ID
  • D. Salesforce Record ID

Answer: C

Explanation:
An indirect lookup relationship is a custom relationship between two objects that are linked by an external ID field. The external ID field must be a custom field on the parent object that has the "External ID" attribute enabled. The child object must be a standard or custom object that is on the detail side of a master-detail or lookup relationship.


NEW QUESTION # 86
When activating a page in the Lightning app builder, what declarative options are available? (Choose three.)

  • A. Select a tab icon for the page.
  • B. Set the tab order in the navigation menu.
  • C. Set the tab visibility.
  • D. Select the tab color.

Answer: A,B,C


NEW QUESTION # 87
Universal con has purchased a lighting component on the appExchange. Where can that component be utilized? (Choose 2)

  • A. Salesforce lighting app
  • B. Visual workflow
  • C. Salesforce1 mobile app
  • D. Lightning process builder

Answer: A,C


NEW QUESTION # 88
Universal Containers wants to track installation information once a container has been purchased on a custom object. Sales reps should have visibility of all the installations associated with their opportunities.
What kind of relationship should this new object have to the Opportunity?

  • A. Master-Detail
  • B. Hierarchical
  • C. Many to Many
  • D. Lookup

Answer: D

Explanation:
Explanation/Reference: https://trailhead.salesforce.com/content/learn/modules/data_modeling/object_relationships


NEW QUESTION # 89
What is true about Social Networks in Salesforce?

  • A. You must login with your own personal social network account to work with social accounts.
  • B. You must login with your company's social network account to work with social accounts.
  • C. Social accounts allow you to manage your company's social media from within Salesforce.
  • D. You must be careful about who you give access to social accounts, as they do not follow a security model.

Answer: A


NEW QUESTION # 90
Universal Containers (UC) has a custom Invoice object and a custom Invoice Line Item object. TTie Invoice Line Item object has a lookup relationship to the Invoice. UC would like to convert the lookup relationship to a master-detail relationship but is unable to do so.
Which two reasons could be preventing this relationship conversion?
Choose 2 answers

  • A. Custom objects are unable to be on the detail side of a master-detail relationship.
  • B. There are already two master-detail relationships on the Invoice Line Item.
  • C. Invoice Line Item records exist without having the Invoice lookup field populated.
  • D. There is a roll-up summary field on the Invoice object.

Answer: B,C


NEW QUESTION # 91
......

Platform-App-Builder Certification Overview Latest Platform-App-Builder PDF Dumps: https://examtests.passcollection.com/Platform-App-Builder-valid-vce-dumps.html