ExamGecko
Ask Question

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

List of questions

Question 161

Report
Export
Collapse

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?

An app builder is unable to create custom report types for objects they do not have permissions for.
An app builder is unable to create custom report types for objects they do not have permissions for.
Once the report type has been deployed it is unable to be deleted.
Once the report type has been deployed it is unable to be deleted.
A primary object selection is locked once the custom report type has been saved.
A primary object selection is locked once the custom report type has been saved.
When a custom or external object is deleted the report type and reports remain but cause an error when the report is run.
When a custom or external object is deleted the report type and reports remain but cause an error when the report is run.
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.

asked 23/09/2024
David Gallegos
41 questions

Question 162

Report
Export
Collapse

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

Streams
Streams
Polls
Polls
Out of Office
Out of Office
Topics
Topics
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.

asked 23/09/2024
Ilia Voronkov
41 questions

Question 163

Report
Export
Collapse

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?

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.
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.
Use different page layouts for Opportunity types based on the user profile.
Use different page layouts for Opportunity types based on the user profile.
Once the required fields are populated, use a sharing rule to share the new fields with the user.
Once the required fields are populated, use a sharing rule to share the new fields with the user.
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.
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.
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

asked 23/09/2024
Jari Tetteroo
38 questions

Question 164

Report
Export
Collapse

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

Escalation rules
Escalation rules
Flow Builder
Flow Builder
Most voted
(1)
Most voted
Process Builder
Process Builder
Most voted
(1)
Most voted
Scheduled Apex
Scheduled Apex
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.

asked 23/09/2024
Albert Hidalgo Bassons
45 questions

Question 165

Report
Export
Collapse

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?

Process Builder
Process Builder
Workflow rule
Workflow rule
Approval process
Approval process
Apex
Apex
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.

asked 23/09/2024
George Morales
47 questions

Question 166

Report
Export
Collapse

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?

Use a workflow rule and an outbound message
Use a workflow rule and an outbound message
Most voted
(1)
Most voted
Use a flow and an outbound message
Use a flow and an outbound message
Most voted
(1)
Most voted
Use a process and Apex Code
Use a process and Apex Code
Use a process and an outbound message
Use a process and an outbound message
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.

asked 23/09/2024
Wilfried Bret
30 questions

Question 167

Report
Export
Collapse

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?

BEGINS(Account.Zip_Code_r, 5)
BEGINS(Account.Zip_Code_r, 5)
TEXT(Account.Zip_Code_c, 5)
TEXT(Account.Zip_Code_c, 5)
LEFT(Account.Zip_Code_c, 5)
LEFT(Account.Zip_Code_c, 5)
LPAD(Account.Zip_Code__r, 5)
LPAD(Account.Zip_Code__r, 5)
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.

asked 23/09/2024
German Lopez
40 questions

Question 168

Report
Export
Collapse

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?

AND( ISBLANK(Lead.Owner.Id) )
AND( ISBLANK(Lead.Owner.Id) )
NOT(ISNEW() && ISBLANK(Lead.Owner:Queue.Id))
NOT(ISNEW() && ISBLANK(Lead.Owner:Queue.Id))
AND(ISNEW(), ISBLANK(Lead.Owner:User.Id))
AND(ISNEW(), ISBLANK(Lead.Owner:User.Id))
NOT(ISBLANK(Lead.Owner:Queue.Id))
NOT(ISBLANK(Lead.Owner:Queue.Id))
Most voted
(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.

asked 23/09/2024
Lyboth Ntsana
43 questions

Question 169

Report
Export
Collapse

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?

Utilize the manage assignments button to assign a permission set group and additional individual permission sets to each user.
Utilize the manage assignments button to assign a permission set group and additional individual permission sets to each user.
Utilize the manage assignments button to assign each user with the same set of permission set groups and permission sets.
Utilize the manage assignments button to assign each user with the same set of permission set groups and permission sets.
Utilize the Data Import Wizard to mass update the desired users with their full list of permission sets and permission set groups.
Utilize the Data Import Wizard to mass update the desired users with their full list of permission sets and permission set groups.
Utilize the Data Loader to mass update the desired users with their full list of permission sets and permission set groups.
Utilize the Data Loader to mass update the desired users with their full list of permission sets and permission set groups.
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.

asked 23/09/2024
Jonathan Tang
42 questions

Question 170

Report
Export
Collapse

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?

Developer
Developer
Full Copy
Full Copy
Developer Pro
Developer Pro
Most voted
(1)
Most voted
Partial Data
Partial Data
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.

asked 23/09/2024
Andrew Dobie
34 questions
Total 294 questions
Go to page: of 30
Search

Related questions