ExamGecko
Ask Question

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

List of questions

Question 91

Report
Export
Collapse

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

Add a formula field to the Contact page layout.
Add a formula field to the Contact page layout.
Add an AppExchange Lightning Component to the mobile app.
Add an AppExchange Lightning Component to the mobile app.
Add the Twitter component to mobile view Lightning pages.
Add the Twitter component to mobile view Lightning pages.
Add a Twitter Quick Action to the mobile navigation.
Add a Twitter Quick Action to the mobile navigation.
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

asked 23/09/2024
Sjoerd Kruit
32 questions

Question 92

Report
Export
Collapse

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?

The ability to invite members to groups of which they are a member
The ability to invite members to groups of which they are a member
The ability to @mention accounts of which they are a contact.
The ability to @mention accounts of which they are a contact.
The ability to request access to public groups
The ability to request access to public groups
The ability to interact with members of their groups
The ability to interact with members of their groups
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

asked 23/09/2024
Newton Vela
39 questions

Question 93

Report
Export
Collapse

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?

ISPICKVAL(Galaxy__r.Type__c)
ISPICKVAL(Galaxy__r.Type__c)
VALUE(Galaxy_r.Type__c)
VALUE(Galaxy_r.Type__c)
TEXT(Galaxy_r.Type_c)
TEXT(Galaxy_r.Type_c)
FIND(Galaxy__r.Type__c)
FIND(Galaxy__r.Type__c)
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.

asked 23/09/2024
Christopher Dawe
41 questions

Question 94

Report
Export
Collapse

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

Roll-up summaries allow MAX, MIN, SUM, COUNT, and AVG.
Roll-up summaries allow MAX, MIN, SUM, COUNT, and AVG.
An object can have 20 object references.
An object can have 20 object references.
An object can have 25 roll-up summaries.
An object can have 25 roll-up summaries.
Most voted
(1)
Most voted
Roll-up summaries are limited to master-detail relationships.
Roll-up summaries are limited to master-detail relationships.
Most voted
(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.

asked 23/09/2024
Timothy Luisterburg
32 questions

Question 95

Report
Export
Collapse

What are two capabilities of Schema Builder? Choose 2 answers

Editing custom settings
Editing custom settings
Creating a new record type
Creating a new record type
Showing selected objects on a page
Showing selected objects on a page
Most voted
(1)
Most voted
Viewing page layouts in a new window
Viewing page layouts in a new window
Most voted
(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.

asked 23/09/2024
Abbas Jabbari
42 questions

Question 96

Report
Export
Collapse

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.

Custom Global Quick Action
Custom Global Quick Action
Custom Global Quick Account.
Custom Global Quick Account.
Custom action on Account
Custom action on Account
Custom link on Account
Custom link on Account
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.

asked 23/09/2024
Penny Chang
47 questions

Question 97

Report
Export
Collapse

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

An external ID field can be a number field.
An external ID field can be a number field.
An external ID field can be a URL field.
An external ID field can be a URL field.
An external ID field can be a phone field.
An external ID field can be a phone field.
An external IDfield can be a text field.
An external IDfield can be a text field.
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

asked 23/09/2024
Richard Fedele
36 questions

Question 98

Report
Export
Collapse

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?

Create a Lightning Web Component.
Create a Lightning Web Component.
Install a solution from the AppExchange.
Install a solution from the AppExchange.
Most voted
(1)
Most voted
Build a Flow that uses API calls.
Build a Flow that uses API calls.
Use a scheduled Apex job.
Use a scheduled Apex job.
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

asked 23/09/2024
Rolf Johannesen
43 questions

Question 99

Report
Export
Collapse

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

The import wizard only allows value to be imported into a dependent picklist if they match the appropriate controlling field
The import wizard only allows value to be imported into a dependent picklist if they match the appropriate controlling field
Most voted
(1)
Most voted
Custom picklist field can be either controlling or dependent field
Custom picklist field can be either controlling or dependent field
Multi select picklist can be dependent picklist but not controlling fields
Multi select picklist can be dependent picklist but not controlling fields
Most voted
(1)
Most voted
Standard and custom picklist fields can be dependent fields.
Standard and custom picklist fields can be dependent fields.
Checkbox fields can be controlling fields but not dependent fields
Checkbox fields can be controlling fields but not dependent fields
Most voted
(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

asked 23/09/2024
Lyndon Kumire
28 questions

Question 100

Report
Export
Collapse

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?

Full sandbox
Full sandbox
Developer sandbox
Developer sandbox
Developer pro sandbox
Developer pro sandbox
Partial sandbox
Partial sandbox
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

asked 23/09/2024
Adriano Costa
36 questions
Total 294 questions
Go to page: of 30
Search

Related questions