ExamGecko
Home Home / Salesforce / Certified Platform App Builder

Salesforce Certified Platform App Builder Practice Test - Questions Answers, Page 17

Question list
Search
Search

List of questions

Search

Related questions











Universal Containers wants to create a report to show job applications with or without resumes.

What considerations should the app builder be aware of when creating the custom report type?

A.
An app builder is unable to create custom report types for objects they do not have permissions for.
A.
An app builder is unable to create custom report types for objects they do not have permissions for.
Answers
B.
Once the report type has been deployed it is unable to be deleted.
B.
Once the report type has been deployed it is unable to be deleted.
Answers
C.
A primary object selection is locked once the custom report type has been saved.
C.
A primary object selection is locked once the custom report type has been saved.
Answers
D.
When a custom or external object is deleted the report type and reports remain but cause an error when the report is run.
D.
When a custom or external object is deleted the report type and reports remain but cause an error when the report is run.
Answers
Suggested answer: C

Explanation:

The primary object selection is locked once the custom report type has been saved. This means that the app builder cannot change the primary object later. The other options are not true.

Cloud Kicks (CK) switched to Lightning Experience and started using Chatter across its global workforce to support its fast-paced sales cycle. CK loves Chatter but struggle with gathering feedback from core team members, including understanding who is available to respond.

Which two ways could CK use Chatter to solve this problem?

Choose 2 answers

A.
Streams
A.
Streams
Answers
B.
Polls
B.
Polls
Answers
C.
Out of Office
C.
Out of Office
Answers
D.
Topics
D.
Topics
Answers
Suggested answer: B, C

Explanation:

Polls and Out of Office are two ways that CK can use Chatter to gather feedback and understand availability. Polls allow users to create surveys and collect opinions from other users. Out of Office lets users set a status message and an end date to inform others when they are away or busy. Streams and Topics are not related to the problem.

An app builder wants to limit the number of fields users are required to fill out when creating a new Opportunity. Once they fill out the required fields and save, the full record page with additional fields relevant to the Opportunity type becomes available.

How could this be accomplished?

A.
Make the Opportunity type a required field on the initial Opportunity page layout and use automation to fill in the type field to a record type.
A.
Make the Opportunity type a required field on the initial Opportunity page layout and use automation to fill in the type field to a record type.
Answers
B.
Use different page layouts for Opportunity types based on the user profile.
B.
Use different page layouts for Opportunity types based on the user profile.
Answers
C.
Once the required fields are populated, use a sharing rule to share the new fields with the user.
C.
Once the required fields are populated, use a sharing rule to share the new fields with the user.
Answers
D.
Hide additional sections on the page layout and show the users how to manually expand them when they want to fill in the fields in the hidden sections.
D.
Hide additional sections on the page layout and show the users how to manually expand them when they want to fill in the fields in the hidden sections.
Answers
Suggested answer: A

Explanation:

Making the Opportunity type a required field on the initial Opportunity page layout and using automation to fill in the type field to a record type is a way to limit the number of fields users are required to fill out when creating a new Opportunity. This way, the app builder can assign different page layouts for different record types based on the Opportunity type. The other options are not feasible or effective

The Director of customer service wants to receive a notification when a case stays in the '' new'' status for more than four business hours.

Which two automation processes should be used to accomplish this?

Choose 2 answers

A.
Escalation rules
A.
Escalation rules
Answers
B.
Flow Builder
B.
Flow Builder
Most voted
Answers (1)
Most voted
C.
Process Builder
C.
Process Builder
Most voted
Answers (1)
Most voted
D.
Scheduled Apex
D.
Scheduled Apex
Answers
Suggested answer: A, C

Explanation:

Escalation rules and Process Builder are two automation processes that can be used to send a notification when a case stays in the '' new'' status for more than four business hours. Escalation rules can define criteria and actions for escalating cases based on time or other factors. Process Builder can create a time-based action that triggers an email alert when the case status is '' new'' for more than four business hours. Flow Builder and Scheduled Apex are not necessary for this requirement.

DreamHouse Realty (DR) employees started using company-owned airplanes for work travel after Ursa Major Solar was acquired. DR executives want to automate the submission travel request forms to enforce the Internal policy.

How should an app builder automate travel requests based on these criteria?

A.
Process Builder
A.
Process Builder
Answers
B.
Workflow rule
B.
Workflow rule
Answers
C.
Approval process
C.
Approval process
Answers
D.
Apex
D.
Apex
Answers
Suggested answer: C

Explanation:

Approval process is the best way to automate travel requests based on internal policy. Approval process can define the steps, criteria, and actions for approving records. The app builder can create an approval process for travel requests that requires approval from managers or executives before they are submitted. Workflow rule, Process Builder, and Apex are not suitable for this requirement.

An App Builder has been asked to integrate Salesforce with an external web service. The web service must be notified every time an Opportunity is Won. Which two can satisfy this requirement?

A.
Use a workflow rule and an outbound message
A.
Use a workflow rule and an outbound message
Most voted
Answers (1)
Most voted
B.
Use a flow and an outbound message
B.
Use a flow and an outbound message
Most voted
Answers (1)
Most voted
C.
Use a process and Apex Code
C.
Use a process and Apex Code
Answers
D.
Use a process and an outbound message
D.
Use a process and an outbound message
Answers
Suggested answer: A, C

Explanation:

Workflow rule and an outbound message or Process Builder and Apex Code are two ways to integrate Salesforce with an external web service. Workflow rule can define criteria and actions for triggering an outbound message, which is an XML message sent to a designated endpoint URL. Process Builder can invoke Apex Code, which is a programming language that can make callouts to external web services using HTTP requests. Flow Builder and an outbound message or Process Builder and an outbound message are not possible combinations.

Universal Containers (UC) tracks Account locations in Zip Code, a custom text field with a validation rule to enforce proper formatting of the US ZIP+4 code for UC's orders.

What formula should the app builder create on Order to display only the first five digits of Zip Code from the parent Account?

A.
BEGINS(Account.Zip_Code_r, 5)
A.
BEGINS(Account.Zip_Code_r, 5)
Answers
B.
TEXT(Account.Zip_Code_c, 5)
B.
TEXT(Account.Zip_Code_c, 5)
Answers
C.
LEFT(Account.Zip_Code_c, 5)
C.
LEFT(Account.Zip_Code_c, 5)
Answers
D.
LPAD(Account.Zip_Code__r, 5)
D.
LPAD(Account.Zip_Code__r, 5)
Answers
Suggested answer: C

Explanation:

LEFT(Account.Zip_Code_c, 5) is the correct formula to display only the first five digits of Zip Code from the parent Account. LEFT function returns the specified number of characters from the left side of a text string. Account.Zip_Code_c is the custom text field that stores the Zip Code on Account object. 5 is the number of characters to return from the left side of the Zip Code. The other options are not valid formulas or functions.

Universal Containers manages leads in a Lead qualification queue where sales reps can accept ownership of the Lead. Campaign members are required to have a sales owner.

What validation rule should an app builder configure?

A.
AND( ISBLANK(Lead.Owner.Id) )
A.
AND( ISBLANK(Lead.Owner.Id) )
Answers
B.
NOT(ISNEW() && ISBLANK(Lead.Owner:Queue.Id))
B.
NOT(ISNEW() && ISBLANK(Lead.Owner:Queue.Id))
Answers
C.
AND(ISNEW(), ISBLANK(Lead.Owner:User.Id))
C.
AND(ISNEW(), ISBLANK(Lead.Owner:User.Id))
Answers
D.
NOT(ISBLANK(Lead.Owner:Queue.Id))
D.
NOT(ISBLANK(Lead.Owner:Queue.Id))
Most voted
Answers (1)
Most voted
Suggested answer: C

Explanation:

The validation rule should be AND(ISNEW(), ISBLANK(Lead.Owner:User.Id)). This rule will prevent saving a new lead record if the owner is not a user. This will ensure that campaign members have a sales owner. Option A is incorrect because it will prevent saving any lead record if the owner is blank, which is not the requirement. Option B is incorrect because it will prevent saving an existing lead record if the owner is a queue, which is not the requirement. Option D is incorrect because it will prevent saving any lead record if the owner is a queue, which is not the requirement.

Universal Containers assigns system access via permission sets and permission set groups to ensure each user has proper access. One department with varying levels of support staff has five consistent permission sets they require in order to complete their duties. Some higher-level staff have additional permission sets that are only required for them.

How should an app builder recommend assigning permission sets to users?

A.
Utilize the manage assignments button to assign a permission set group and additional individual permission sets to each user.
A.
Utilize the manage assignments button to assign a permission set group and additional individual permission sets to each user.
Answers
B.
Utilize the manage assignments button to assign each user with the same set of permission set groups and permission sets.
B.
Utilize the manage assignments button to assign each user with the same set of permission set groups and permission sets.
Answers
C.
Utilize the Data Import Wizard to mass update the desired users with their full list of permission sets and permission set groups.
C.
Utilize the Data Import Wizard to mass update the desired users with their full list of permission sets and permission set groups.
Answers
D.
Utilize the Data Loader to mass update the desired users with their full list of permission sets and permission set groups.
D.
Utilize the Data Loader to mass update the desired users with their full list of permission sets and permission set groups.
Answers
Suggested answer: A

Explanation:

The app builder should recommend utilizing the manage assignments button to assign a permission set group and additional individual permission sets to each user. This way, the app builder can assign the five consistent permission sets to all users in one permission set group, and then assign additional permission sets to higher-level staff as needed. Option B is incorrect because it will not account for the varying levels of support staff and their different permission sets. Option C is incorrect because the Data Import Wizard cannot be used to assign permission sets or permission set groups to users. Option D is incorrect because the Data Loader cannot be used to assign permission set groups to users.

The developer at Universal Containers wants to test code in a sandbox environment. In order to ensure the code works properly, the sandbox needs to have at least half a gigabyte of data. The sandbox will need to be refreshed after each three-day sprint.

What type of sandbox should the App Builder provision to the developer?

A.
Developer
A.
Developer
Answers
B.
Full Copy
B.
Full Copy
Answers
C.
Developer Pro
C.
Developer Pro
Most voted
Answers (1)
Most voted
D.
Partial Data
D.
Partial Data
Answers
Suggested answer: D

Explanation:

The app builder should provision a Partial Data sandbox to the developer. A Partial Data sandbox can have up to 5 GB of data, which meets the requirement of having at least half a gigabyte of data. A Partial Data sandbox can also be refreshed every 5 days, which meets the requirement of refreshing after each three-day sprint. Option A is incorrect because a Developer sandbox can only have up to 200 MB of data, which does not meet the requirement. Option B is incorrect because a Full Copy sandbox can only be refreshed every 29 days, which does not meet the requirement. Option C is incorrect because a Developer Pro sandbox can only have up to 1 GB of data, which may not be enough for the requirement.

Total 294 questions
Go to page: of 30