ExamGecko
Ask Question

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

List of questions

Question 21

Report
Export
Collapse

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 Star__c report typewith Galaxy__c as a field will be automatically created.
A Star__c report typewith Galaxy__c as a field will be automatically created.
A new custom report type will need to be created for Star__c with lookup fields from Galaxy__c.
A new custom report type will need to be created for Star__c with lookup fields from Galaxy__c.
A Galaxy__c with Star__c report type will be automatically created.
A Galaxy__c with Star__c report type will be automatically created.
A new custom report type will need to be created for Galaxy__c with Star__c.
A new custom report type will need to be created for Galaxy__c with Star__c.
Suggested answer: C

Explanation:

A master-detail relationship between two objects automatically creates a report type that includes both objects. The app builder does not need to create a custom report type for this scenario.The report type will have the format of Parent object with Child object

asked 23/09/2024
metodija durtanoski
41 questions

Question 22

Report
Export
Collapse

SERVICE AGENTS ARE REQUIRED TO CONFIRM A USER IDENTITY BEFORE PROVIDING SUPPORT INFORMATION OVER THE PHONE. WHAT FEATURE CAN AN APP BUILDER USE TO HELP AGENTS MEET THIS REQUIREMENT?

Include Surveys as a Case related list
Include Surveys as a Case related list
Case Validation Rules
Case Validation Rules
Add Path to the top of the Case layout
Add Path to the top of the Case layout
Guided Action Flows on the record page
Guided Action Flows on the record page
Suggested answer: D

Explanation:

Guided Action Flows on the record page can help service agents meet the requirement of confirming a user identity before providing support information over the phone.Guided Action Flows are a series of screens that guide agents through a predefined process, such as verifying user information, collecting case details, or resolving issues

asked 23/09/2024
Dirk Prinsloo
34 questions

Question 23

Report
Export
Collapse

Universal Containers created a 'New Task' custom action on the Opportunity object. The action was added to all page layouts in the Mobile & Lightning Actions section.

Which Lightning component should the app builder add to the layout to display the action?

Related record
Related record
Related lists
Related lists
Highlights panel
Highlights panel
Activities
Activities
Suggested answer: C

Explanation:

The best Lightning component to add to the layout to display the 'New Task' custom action is Highlights panel. This component shows key information and actions for a record, such as its name, owner, and custom actions. Related record, related lists, and activities are not Lightning components that display custom actions. See [this article] for more information on Highlights panel.

asked 23/09/2024
giorgi durglishvili
42 questions

Question 24

Report
Export
Collapse

Ursa Major Solar wants to provide sales console users with an Incredible experience, with the most-used components easily accessible at all times.

What solution can enable reps to see and access these components from anywhere within the app without leaving the pages where the team is working?

Favorites
Favorites
Home page
Home page
Global actions
Global actions
Utility bar
Utility bar
Suggested answer: D

Explanation:

The best solution to enable reps to see and access the most-used components from anywhere within the app without leaving the page they are working on is Utility bar. This is a footer that can be added to any Lightning app and can contain tools such as history, notes, or softphone. Favorites, home page, and global actions are not solutions that provide access to components from anywhere within the app. See [this article] for more information on Utility bar.

asked 23/09/2024
Heritier kandolo
47 questions

Question 25

Report
Export
Collapse

Which three Salesforce functionalities are ignored when processing field updates in workflow rules and approval processes?

Multiple currencies
Multiple currencies
Most voted
(1)
Most voted
Field-Level Security
Field-Level Security
Most voted
(1)
Most voted
Validation Rules
Validation Rules
Most voted
(1)
Most voted
Record type picklist value assignments
Record type picklist value assignments
Decimal places and character limits
Decimal places and character limits
Suggested answer: B, C, E

Explanation:

The three Salesforce functionalities that are ignored when processing field updates in workflow rules and approval processes are:

Field-Level Security: This means that the field update will occur regardless of the user's profile or permission set settings that determine whether they can see or edit the field1.

Validation Rules: This means that the field update will bypass any validation rules that might otherwise prevent the record from being saved1.

Decimal places and character limits: This means that the field update will round or truncate the value to fit the field's format, without throwing an error

asked 23/09/2024
Amanda Ferrucho
26 questions

Question 26

Report
Export
Collapse

An app Builder creates an Account validation rule on the Industry field that will throw an error if the length of the field is longer than 6 characters. Another App Builder creates a workflow rule with a field update that sets the Industry field to Technology whenever the Billing City field is set to San Francisco. What will happen the next time a sales person saves an Account with a Billing City of San Francisco?

The record will save and the Industry field will change to Technology
The record will save and the Industry field will change to Technology
The record will not save and the validation rule's error messagewill be displayed
The record will not save and the validation rule's error messagewill be displayed
The record will not save and no error message will be displayed
The record will not save and no error message will be displayed
The record will save but the Industry field will not change to Technology
The record will save but the Industry field will not change to Technology
Suggested answer: B

Explanation:

The record will not save and the validation rule's error message will be displayed because the field update will violate the validation rule. The validation rule will prevent the record from being saved if the Industry field is longer than 6 characters, and Technology is 10 characters long.

asked 23/09/2024
Amidou Florian TOURE
33 questions

Question 27

Report
Export
Collapse

At Universal Containers, the VP of Service has requested a visual indicator flag on each case, based on the case priority. High-priority cases should be flagged red, medium-priority should be flagged yellow, and low-priority cases should be flagged green. Which formula would accomplish this requirement? Choose 2 answers

CASE(Priority, ''Low'', ''img/samples/flag_green.gif'', ''Medium'', ''img/samples/flag_yellow.gif'', ''High'', ''img/samples/flag_red.gif'', ''/s.gif'')
CASE(Priority, ''Low'', ''img/samples/flag_green.gif'', ''Medium'', ''img/samples/flag_yellow.gif'', ''High'', ''img/samples/flag_red.gif'', ''/s.gif'')
IMAGE(IF(ISPICKVAL(Priority, ''Low''), ''img/samples/flag_green.gif'', IF(ISPICKVAL(Priority, ''Medium''), ''img/samples/flag_yellow.gif'', IF(ISPICKVAL(Priority, ''High''), ''img/samples/flag_red.gif''))), ''Priority Flag'')
IMAGE(IF(ISPICKVAL(Priority, ''Low''), ''img/samples/flag_green.gif'', IF(ISPICKVAL(Priority, ''Medium''), ''img/samples/flag_yellow.gif'', IF(ISPICKVAL(Priority, ''High''), ''img/samples/flag_red.gif''))), ''Priority Flag'')
Most voted
(1)
Most voted
IF (ISPICKVAL(Priority, ''Low''), ''img/samples/flag_green.gif'', IF(ISPICKVAL(Priority, ''Medium''), ''img/samples/flag_yellow.gif'', IF(ISPICKVAL(Priority,''High''), ''img/samples/flag_red.gif'', ''/s.gif'')))
IF (ISPICKVAL(Priority, ''Low''), ''img/samples/flag_green.gif'', IF(ISPICKVAL(Priority, ''Medium''), ''img/samples/flag_yellow.gif'', IF(ISPICKVAL(Priority,''High''), ''img/samples/flag_red.gif'', ''/s.gif'')))
IMAGE (CASE( Priority, ''Low'', ''img/samples/flag_green.gif'', ''Medium'', ''img/samples/flag_yellow.gif'', ''High'', ''img/samples/flag_red.gif'', ''Priority Flag'')
IMAGE (CASE( Priority, ''Low'', ''img/samples/flag_green.gif'', ''Medium'', ''img/samples/flag_yellow.gif'', ''High'', ''img/samples/flag_red.gif'', ''Priority Flag'')
Most voted
(1)
Most voted
Suggested answer: A, D

Explanation:

The formula for creating a visual indicator flag on each case based on the case priority should use the IMAGE and CASE functions. The IMAGE function returns an image for a given URL, and the CASE function evaluates an expression and returns a value based on that expression. Option A and D use these functions correctly, while option B and C do not.

asked 23/09/2024
Ayo dickson
50 questions

Question 28

Report
Export
Collapse

Cloud Kicks has a sales rep who is stating that their Contact is unavailable for other users to see within Salesforce.

In which three ways can an app builder troubleshoot this issue?

Choose 3 answers

Create an Account Sharing Rule to give the users access to all records.
Create an Account Sharing Rule to give the users access to all records.
Confirm whether Default Organization-Wide Sharing Settings provide access to the Account.
Confirm whether Default Organization-Wide Sharing Settings provide access to the Account.
Review the Contact record and ensure it is linked to an Account.
Review the Contact record and ensure it is linked to an Account.
Verify the users with the issue have access to the Contact object.
Verify the users with the issue have access to the Contact object.
Create a new Contact and have the users try again.
Create a new Contact and have the users try again.
Suggested answer: B, C, D

Explanation:

To troubleshoot the issue of a contact being unavailable for other users to see, an app builder should check the following things:

Confirm whether Default Organization-Wide Sharing Settings provide access to the Account. This setting determines the baseline level of access that users have to each other's records.

Review the Contact record and ensure it is linked to an Account. Contacts that are not linked to an account are private and only visible to the owner and administrators.

Verify the users with the issue have access to the Contact object. Users need to have at least read permission on the Contact object to view contact records. Option A and E are not relevant for troubleshooting this issue.

asked 23/09/2024
Sebasteen Lawrance
43 questions

Question 29

Report
Export
Collapse

The DreamHouse Realty (DR) service manager has asked for some improvements in case management to enforce process compliance so that cases are unable to be reverted to an earlier case status, and to ensure that certain fields are required when specific case criteria are met.

What solution should an app builder implement to meet these requirements?

Workflow Rules
Workflow Rules
Process Builder
Process Builder
A Validation Rules
A Validation Rules
Activities Component
Activities Component
Suggested answer: C

Explanation:

A validation rule can enforce process compliance by preventing users from saving records that do not meet certain criteria.In this case, a validation rule can prevent users from reverting to an earlier case status or leaving certain fields blank when specific case criteria are met

asked 23/09/2024
Tanvir Anjum
42 questions

Question 30

Report
Export
Collapse

Cloud Kicks (CK) wants to track orders against inventory, ensuring its ability to fulfill order requests. CK created a junction object called Request Inventory to enable many-to-many relationships with the Inventory and Order objects.

What does the app builder need to provide to ensure users can view Request Inventory records?

Read access to both master objects.
Read access to both master objects.
Apex-based sharing on the first master object.
Apex-based sharing on the first master object.
Sharing rules on Request Inventory object.
Sharing rules on Request Inventory object.
Read access to the first master object.
Read access to the first master object.
Suggested answer: A

Explanation:

To view a junction object record, a user must have at least read access to both master objects.This is because the junction object inherits the sharing and security settings from both master objects

asked 23/09/2024
Yesaldine Salazar
42 questions
Total 294 questions
Go to page: of 30
Search

Related questions