ExamGecko
Home Home / Salesforce / Certified Platform App Builder

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

Question list
Search
Search

List of questions

Search

Related questions











How should an app builder configure access to a contact's Twitter profile for Salesforce mobile app users?

A.
Add a formula field to the Contact page layout.
A.
Add a formula field to the Contact page layout.
Answers
B.
Add an AppExchange Lightning Component to the mobile app.
B.
Add an AppExchange Lightning Component to the mobile app.
Answers
C.
Add the Twitter component to mobile view Lightning pages.
C.
Add the Twitter component to mobile view Lightning pages.
Answers
D.
Add a Twitter Quick Action to the mobile navigation.
D.
Add a Twitter Quick Action to the mobile navigation.
Answers
Suggested answer: C

Explanation:

The Twitter component is a standard Lightning component that can be added to mobile view Lightning pages using the Lightning App Builder.It displays a contact's Twitter profile and recent tweets

Universal Containers would like to collaborate with its customers within Salesforce, and has decided to enable the 'Allow Customer Invitations' Chatter setting. What permission is granted to Customers when invited to ChatterGroup?

A.
The ability to invite members to groups of which they are a member
A.
The ability to invite members to groups of which they are a member
Answers
B.
The ability to @mention accounts of which they are a contact.
B.
The ability to @mention accounts of which they are a contact.
Answers
C.
The ability to request access to public groups
C.
The ability to request access to public groups
Answers
D.
The ability to interact with members of their groups
D.
The ability to interact with members of their groups
Answers
Suggested answer: D

Explanation:

Customers who are invited to Chatter groups can only interact with members of their groups.They cannot invite other members, @mention accounts, or request access to public groups

Ursa Major Solar wants to see the Type field from the parent object Galaxy listed on the child recordStar. The app builder is receiving an error stating 'Picklist values are only supported in certain functions'.

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

A.
ISPICKVAL(Galaxy__r.Type__c)
A.
ISPICKVAL(Galaxy__r.Type__c)
Answers
B.
VALUE(Galaxy_r.Type__c)
B.
VALUE(Galaxy_r.Type__c)
Answers
C.
TEXT(Galaxy_r.Type_c)
C.
TEXT(Galaxy_r.Type_c)
Answers
D.
FIND(Galaxy__r.Type__c)
D.
FIND(Galaxy__r.Type__c)
Answers
Suggested answer: C

Explanation:

TEXT() is a formula function that converts a picklist value to text. This can be used to display the Type field from the parent object Galaxy on the child record Star. ISPICKVAL() is used to check if a picklist value is equal to a specified value. VALUE() is used to convert text that represents a number to a number. FIND() is used to locate one text string within another text string.

To increase adoption, Universal Containers is proposing changes to its Salesforce data model to allow easier visibility for sales reps into key metrics. The proposal has three custom objectsrelated to the Account object, one with a master-detail, and two that are not. Each of these objects has 15 fields they would like to summarize on the Account object.

What are two considerations for this proposal?

Choose 2 answers

A.
Roll-up summaries allow MAX, MIN, SUM, COUNT, and AVG.
A.
Roll-up summaries allow MAX, MIN, SUM, COUNT, and AVG.
Answers
B.
An object can have 20 object references.
B.
An object can have 20 object references.
Answers
C.
An object can have 25 roll-up summaries.
C.
An object can have 25 roll-up summaries.
Most voted
Answers (1)
Most voted
D.
Roll-up summaries are limited to master-detail relationships.
D.
Roll-up summaries are limited to master-detail relationships.
Most voted
Answers (1)
Most voted
Suggested answer: A, D

Explanation:

Roll-up summaries allow MAX, MIN, SUM, COUNT, and AVG functions on numeric fields from child records related by a master-detail relationship. Roll-up summaries are limited to master-detail relationships and cannot be used with lookup relationships. An object can have up to 40 roll-up summary fields, not 25. An object can have up to 25 relationship fields (master-detail or lookup), not 20.

What are two capabilities of Schema Builder? Choose 2 answers

A.
Editing custom settings
A.
Editing custom settings
Answers
B.
Creating a new record type
B.
Creating a new record type
Answers
C.
Showing selected objects on a page
C.
Showing selected objects on a page
Most voted
Answers (1)
Most voted
D.
Viewing page layouts in a new window
D.
Viewing page layouts in a new window
Most voted
Answers (1)
Most voted
Suggested answer: A, C

Explanation:

Schema Builder is a tool that allows app builders to view and modify the data model of their Salesforce org. Some of the capabilities of Schema Builder are:

Creating and editing custom objects and fields

Creating and editing relationships between objects

Showing selected objects on a page

Editing custom settings

Schema Builder cannot be used to create a new record type or view page layouts in a new window.

Manage at Universal Containers want a quick to create additional accounts to form a hierarchy from a parent account record. They want to auto-populate five fields based on the parent to make it easier for users to create the child accounts quickly.

A.
Custom Global Quick Action
A.
Custom Global Quick Action
Answers
B.
Custom Global Quick Account.
B.
Custom Global Quick Account.
Answers
C.
Custom action on Account
C.
Custom action on Account
Answers
D.
Custom link on Account
D.
Custom link on Account
Answers
Suggested answer: C

Explanation:

A custom action on Account can be used to create additional accounts from a parent account record. A custom action can have predefined values for certain fields based on the parent record. A custom global action can be used to create records that do not have any relationship with other objects. A custom link on Account can be used to execute JavaScript or link to an external URL.

DreamHouse Realty wa nts to import its property records from an external system into Salesforce. The app builder will use an external ID field to house the property ID from the external system.

Which two details should the app builder know when using external ID fields?

Choose 2 answers

A.
An external ID field can be a number field.
A.
An external ID field can be a number field.
Answers
B.
An external ID field can be a URL field.
B.
An external ID field can be a URL field.
Answers
C.
An external ID field can be a phone field.
C.
An external ID field can be a phone field.
Answers
D.
An external IDfield can be a text field.
D.
An external IDfield can be a text field.
Answers
Suggested answer: A, D

Explanation:

An external ID field can be a number field or a text field, but not a URL field or a phone field. A URL field is used to store web addresses and a phone field is used to store phone numbers.An external ID field is used to store unique identifiers from an external system and it can be used for upsert operations

Universal Containers wants to display the real-time stock price for each Account on the Account record page.

How should an app builder implement this request?

A.
Create a Lightning Web Component.
A.
Create a Lightning Web Component.
Answers
B.
Install a solution from the AppExchange.
B.
Install a solution from the AppExchange.
Most voted
Answers (1)
Most voted
C.
Build a Flow that uses API calls.
C.
Build a Flow that uses API calls.
Answers
D.
Use a scheduled Apex job.
D.
Use a scheduled Apex job.
Answers
Suggested answer: A

Explanation:

The best way to implement this request is to create a Lightning Web Component that can fetch the real-time stock price from an external API and display it on the Account record page. Installing a solution from the AppExchange may not be feasible as it may not match the exact requirements or may have additional costs. Building a Flow that uses API calls may not be efficient as it may consume API limits and may not be able to update the stock price in real-time.Using a scheduled Apex job may not be suitable as it may not be able to run frequently enough to reflect the real-time stock price

Universal Containers wants to streamline its data capture process by linking fields together. They wish to do this so that the available value on dependents fields are driven by value selected on controlling fields. Which consideration supports the stated requirements? Choose 3 answers

A.
The import wizard only allows value to be imported into a dependent picklist if they match the appropriate controlling field
A.
The import wizard only allows value to be imported into a dependent picklist if they match the appropriate controlling field
Most voted
Answers (1)
Most voted
B.
Custom picklist field can be either controlling or dependent field
B.
Custom picklist field can be either controlling or dependent field
Answers
C.
Multi select picklist can be dependent picklist but not controlling fields
C.
Multi select picklist can be dependent picklist but not controlling fields
Most voted
Answers (1)
Most voted
D.
Standard and custom picklist fields can be dependent fields.
D.
Standard and custom picklist fields can be dependent fields.
Answers
E.
Checkbox fields can be controlling fields but not dependent fields
E.
Checkbox fields can be controlling fields but not dependent fields
Most voted
Answers (1)
Most voted
Suggested answer: A, B, E

Explanation:

The import wizard only allows values to be imported into a dependent picklist if they match the appropriate controlling field. This ensures data integrity and prevents invalid values from being imported. Custom picklist fields can be either controlling or dependent fields. This allows the app builder to create custom dependencies between custom picklists. Checkbox fields can be controlling fields but not dependent fields. This allows the app builder to create dependencies based on checkbox values, such as true or false. Multi-select picklist fields can be dependent picklist fields but not controlling fields. This allows the app builder to create dependencies based on multiple values selected in a multi-select picklist field. Standard and custom picklist fields can be dependent fields, but not all standard picklist fields can be controlling fields.Some standard picklist fields, such as Lead Status or Opportunity Stage, cannot be controlling fields because they are used in other processes, such as lead conversion or sales path

DreamHouse Realty is rethinking its sandbox utilization strategy after acquiring Cloud Kicks. The Salesforce COE already utilizes a partial and a full sandbox, which it refreshes on their own regular schedules. Teams are expanding and have to begin each of their small projects in a sandbox before committing to the larger pool for collaborative testing while still keeping costs down.

What type of sandbox should each team member use?

A.
Full sandbox
A.
Full sandbox
Answers
B.
Developer sandbox
B.
Developer sandbox
Answers
C.
Developer pro sandbox
C.
Developer pro sandbox
Answers
D.
Partial sandbox
D.
Partial sandbox
Answers
Suggested answer: B

Explanation:

The best type of sandbox for each team member to use is a developer sandbox. A developer sandbox is a copy of production that includes only the metadata, such as objects, fields, layouts, etc. It does not include any data, such as records or attachments. A developer sandbox is ideal for small projects that do not require data testing, such as developing new features or customizations. A developer sandbox has a storage limit of 200 MB and can be refreshed once per day. A developer sandbox is also cheaper than other types of sandboxes. A full sandbox is a copy of production that includes all the metadata and data. It is ideal for large projects that require data testing, such as performance testing or integration testing. A full sandbox has the same storage limit as production and can be refreshed every 29 days. A full sandbox is also the most expensive type of sandbox. A developer pro sandbox is similar to a developer sandbox, but it has a larger storage limit of 1 GB and can be refreshed every 5 days. It is ideal for projects that require some data testing, such as data migration or quality assurance testing. A partial sandbox is similar to a full sandbox, but it has a smaller storage limit of 5 GB and can be refreshed every 5 days.It is ideal for projects that require selective data testing, such as user acceptance testing or staging testing

Total 294 questions
Go to page: of 30