ExamGecko
Home Home / Salesforce / Certified Platform App Builder

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

Question list
Search
Search

List of questions

Search

Related questions











Universal Containers needs the 18-digit record ID from Opportunity records when exporting data to Excel in order to ensure each record is treated uniquely.

What formula should an app builder use to create this new field?

A.
ISNUMBER(Id)
A.
ISNUMBER(Id)
Answers
B.
CASESAFEID(Id)
B.
CASESAFEID(Id)
Answers
C.
TEXT(Id)
C.
TEXT(Id)
Answers
D.
VALUE(Id)
D.
VALUE(Id)
Answers
Suggested answer: B

Explanation:

The app builder should use the CASESAFEID(Id) formula to create this new field. The CASESAFEID function returns the 18-digit case-insensitive version of the record ID, which is unique for each record in Salesforce.The 18-digit record ID is useful for exporting data to external systems that require case-sensitive IDs1. Option A, C, and D are not formulas that can return the 18-digit record ID.

Universal Containers (UC) maintains information for over 2 million assets in an external system. UC needs to access these assets in real-time data in Salesforce and is nearing the data storage limits.

What feature could an app builder recommend UC use?

A.
Data Loader
A.
Data Loader
Answers
B.
Salesforce Connect
B.
Salesforce Connect
Answers
C.
Salesforce to Salesforce
C.
Salesforce to Salesforce
Answers
D.
Data Export Wizard
D.
Data Export Wizard
Answers
Suggested answer: B

Explanation:

The app builder should recommend UC use Salesforce Connect to access the assets in real-time data in Salesforce. Salesforce Connect is a feature that allows users to view, search, and modify data that is stored outside Salesforce, such as in an external system.Salesforce Connect uses external objects and external data sources to integrate data from various sources without copying or synchronizing it2. This can help UC access their assets in real-time without consuming data storage limits in Salesforce. Option A, C, and D are not features that can meet this requirement.

Universal Containers has deployed custom tabs to Production via changes sets, without including the profile settings or permission sets.

What is the settings for the visibility of custom tabs?

A.
Custom tabs are default off for all users.
A.
Custom tabs are default off for all users.
Answers
B.
Custom tabs are default on for all uses.
B.
Custom tabs are default on for all uses.
Answers
C.
Custom tabs are hidden for all users.
C.
Custom tabs are hidden for all users.
Answers
D.
Custom tabs are NOT deployed.
D.
Custom tabs are NOT deployed.
Answers
Suggested answer: A

Explanation:

The setting for the visibility of custom tabs is default off for all users when they are deployed via change sets without including the profile settings or permission sets.This means that the custom tabs are not visible in any apps or navigation menus for any users unless they are manually added by each user or by an administrator3. Option B, C, and D are not correct settings for the visibility of custom tabs.

When a sales rep submits an account for approval, Universal Containers wants the user to answer additional questions via a popup window to populate additional record fields.

What should an app builder use to achieve the desired result?

A.
Process Builder and Flow
A.
Process Builder and Flow
Answers
B.
Lightning component and Process Builder
B.
Lightning component and Process Builder
Answers
C.
Custom picklist field and Process Builder
C.
Custom picklist field and Process Builder
Answers
D.
Custom button and Flow
D.
Custom button and Flow
Answers
Suggested answer: D

Explanation:

The app builder should use a custom button and Flow to achieve the desired result. A custom button is a button that can invoke custom logic or actions when clicked by a user. A Flow is a type of automation tool that can guide users through a series of screens and perform actions based on user input. In this case, the app builder can create a custom button on the Account object that launches a Flow when clicked by a user.The Flow can display a popup window with questions for the user to answer and populate additional fields on the Account record based on the user input4. Option A, B, and C are not tools that can achieve this result.

Sales reps at Cloud Kicks (CK) forget to submit for approval when CK needs orders reviewed before close won. CK wants to automatically submit opportunities into the Secure Commitment Stage to eliminate manual submission.

Which three features would meet the business requirements?

Choose 3 answers

A.
Workflow
A.
Workflow
Answers
B.
Process Builder
B.
Process Builder
Answers
C.
Apex
C.
Apex
Answers
D.
Chatter action
D.
Chatter action
Answers
E.
Flow
E.
Flow
Answers
Suggested answer: B, C, E

Explanation:

The app builder should use three features to meet the business requirements:

Process Builder: This is a type of automation tool that can execute actions based on certain criteria. In this case, the process builder can have a criteria that evaluates if an opportunity is in the Secure Commitment Stage, and then execute an action that submits it for approval.

Apex: This is a programming language that allows developers to execute complex logic on the Salesforce platform. Apex can be used to create triggers that run before or after certain events, such as insert, update, delete, or undelete of records. In this case, Apex can be used to create a trigger that runs before an opportunity is updated and submits it for approval if it is in the Secure Commitment Stage.

Flow: This is another type of automation tool that can guide users through a series of screens and perform actions based on user input. Flow can also be triggered by certain events, such as when a record is created or updated. In this case, Flow can be used to create a record-triggered flow that runs after an opportunity is updated and submits it for approval if it is in the Secure Commitment Stage. Option A and D are not features that can meet the business requirements.

Universal Containers uses Contracts for agreements with customers. A sales manager is required to provide approval for contracts and director approval for any contract over $10,000.

Which two options should an app builder use to ensure all contracts route for the correct approval and also prevent the sales rep from making changes to the record while it is being approved?

Choose 2 answers

A.
Create an approval process on the Contract object with criteria set on a second approval step set as 'Amount__c > 10,000' and set the approver as director.
A.
Create an approval process on the Contract object with criteria set on a second approval step set as 'Amount__c > 10,000' and set the approver as director.
Answers
B.
Create an approval process on the Contract object and set the field for 'Next Automated Approver Determined By' as Manager'.
B.
Create an approval process on the Contract object and set the field for 'Next Automated Approver Determined By' as Manager'.
Answers
C.
Create a validation rule on the Contract object that prevents updates to the contract record while it is being reviewed.
C.
Create a validation rule on the Contract object that prevents updates to the contract record while it is being reviewed.
Answers
D.
Create an approval process on the Contract object with one step for each sales manager that sets the approver as the director.
D.
Create an approval process on the Contract object with one step for each sales manager that sets the approver as the director.
Answers
Suggested answer: A, C

Explanation:

The app builder should use two options to ensure all contracts route for the correct approval and also prevent the sales rep from making changes to the record while it is being approved:

Create an approval process on the Contract object with criteria set on a second approval step set as 'Amount__c > 10,000' and set the approver as director. An approval process is a type of process that automates how Salesforce records are approved in an organization. An approval process can have multiple steps with different criteria and approvers.In this case, the app builder can create an approval process on the Contract object with two steps: one for the sales manager approval and one for the director approval if the contract amount is over $10,0001.

Create a validation rule on the Contract object that prevents updates to the contract record while it is being reviewed. A validation rule is a type of rule that checks data quality by verifying that the data in a record meets certain standards before it can be saved. A validation rule can prevent users from making changes to a record that is in a certain status or stage.In this case, the app builder can create a validation rule on the Contract object that prevents updates to the contract record if its Approval Status field is not equal to Not Submitted2. Option B and D are not options that can ensure all contracts route for the correct approval and also prevent the sales rep from making changes to the record while it is being approved.

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 can be changed on lookup dialogs, list views, and search result layouts
A.
Standard buttons can be changed on lookup dialogs, list views, and search result layouts
Answers
B.
Standard buttons can be overridden with a Visualforce page
B.
Standard buttons can be overridden with a Visualforce page
Answers
C.
Standard buttons that are not available for overrides can still be hidden on page layouts
C.
Standard buttons that are not available for overrides can still be hidden on page layouts
Answers
D.
Standard buttons can be overridden, relocated on the detail page, and relabeled
D.
Standard buttons can be overridden, relocated on the detail page, and relabeled
Answers
Suggested answer: B, C

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.

What option is available to an App Builder when defining an object-specific Create Record custom action? Choose 2 answers

A.
Pre-Defining field values on the target object.
A.
Pre-Defining field values on the target object.
Answers
B.
Redirecting the end user to the detail page of the target object
B.
Redirecting the end user to the detail page of the target object
Answers
C.
Specifying the fields and layout of the action.
C.
Specifying the fields and layout of the action.
Answers
D.
Allowingthe end user to choose the record type
D.
Allowingthe end user to choose the record type
Answers
Suggested answer: A, C

Explanation:

The app builder has two options available when defining an object-specific Create Record custom action:

Pre-Defining field values on the target object. This means that the app builder can specify default values for certain fields on the target object when creating a new record using the custom action.

Specifying the fields and layout of the action. This means that the app builder can choose which fields to include in the action and how they are arranged on the screen. Option B and D are not options available when defining an object-specific Create Record custom action.

Cloud Kicks's management team frequently travels and wants to approve requests from their team on the go via Chatter.

Where would an app builder enable this ability?

A.
Chatter Feed Tracking
A.
Chatter Feed Tracking
Answers
B.
Object Settings
B.
Object Settings
Answers
C.
Chatter Settings
C.
Chatter Settings
Answers
D.
Approval Process Settings
D.
Approval Process Settings
Answers
Suggested answer: C

Explanation:

The app builder would enable this ability in Chatter Settings. Chatter Settings is a setup menu that allows an app builder to configure various aspects of Chatter functionality, such as feeds, groups, email notifications, and more. One of the options in Chatter Settings is Enable Approvals via Chatter, which allows users to approve or reject requests from their team via Chatter posts or comments. Option A, B, and D are not places where an app builder would enable this ability.

Ursa Major Solar (UMS) has a custom object where they track Galactic Vendors. The object has four custom fields for the Galactic Vendors's location:

The UMS's leadership wants these fields to be concatenated into a single formula field on two lines.

Which formula fulfills this requirement?

A)

B)

C)

D)

A.
Option A
A.
Option A
Answers
B.
Option B
B.
Option B
Answers
C.
Option C
C.
Option C
Answers
D.
Option D
D.
Option D
Answers
Suggested answer: C

Explanation:

This formula concatenates the four custom fields for the Galactic Vendor's location into a single text value, separated by commas and spaces. The formula also uses the BR function to insert a line break after the second field, creating two lines of text. Option A, B, and D are not formulas that fulfill the requirement.

Total 294 questions
Go to page: of 30