ExamGecko
Ask Question

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

List of questions

Question 81

Report
Export
Collapse

Sales reps at Universal Containers create multiple quotes per opportunity.

What automation tool should an app builder recommend to delete rejected quotes?

Approval process
Approval process
Validation rule
Validation rule
Workflow rule
Workflow rule
Flow
Flow
Suggested answer: D

Explanation:

A flow is a powerful automation tool that can perform complex logic and data manipulation. A flow can be used to delete rejected quotes by using a record-triggered flow that runs when a quote is updated, or by using a scheduled flow that runs at a specified time.

asked 23/09/2024
Vageesh Shanmukha
48 questions

Question 82

Report
Export
Collapse

Cloud Kicks wants to display the number of opportunities that are Closed Won with a Close Date within the last year on the Account detail page.

Which tool should an app builder use to implement this?

Process Builder
Process Builder
Activity Timeline
Activity Timeline
Roll-Up Summary Field
Roll-Up Summary Field
Workflow Rule
Workflow Rule
Suggested answer: C

Explanation:

A roll-up summary field is a field that calculates values from related records. A roll-up summary field can be used to display the number of opportunities that are closed won with a close date within the last year on the account detail page by using a filter criteria on the field.

asked 23/09/2024
Patrick Cheung
37 questions

Question 83

Report
Export
Collapse

A Service Coordinator (SC) for Ursa Major Solar (UMS) does a final review of work orders owned by a technician for a specific region before the records are submitted for an invoice. Beforeclosing out the work order, the SC needs to modify data or remove attachments that were added by mistake. The SC also needs access to any other related records owned by the technician.

What solution would provide the required access, given a private data model?

Give the SC a permission set with the Modify All Data system permission.
Give the SC a permission set with the Modify All Data system permission.
Put the SC in the role hierarchy above the technicians whose work orders they review.
Put the SC in the role hierarchy above the technicians whose work orders they review.
Create a workflow rule that updates records owned by technicians in that regionwith the SC.
Create a workflow rule that updates records owned by technicians in that regionwith the SC.
Change work order access on the SC's profile to 'Modify AIl.
Change work order access on the SC's profile to 'Modify AIl.
Suggested answer: B

Explanation:

Putting the SC in the role hierarchy above the technicians whose work orders they review will provide the required access, given a private data model. The role hierarchy determines how users can access records they do not own. Users at any given role level can view, edit, and report on all data owned by or shared with users below them in the role hierarchy.

asked 23/09/2024
Jonathan Hernández Hernández
31 questions

Question 84

Report
Export
Collapse

Universal Containers would like to embed a chart of all related Opportunities, by stage, on the Account detail page. Which type of report should the App Builder create to add to the Account page layout?

A summary report on the Opportunity object.
A summary report on the Opportunity object.
A summary report on the Account object.
A summary report on the Account object.
A tabular report on the Account object.
A tabular report on the Account object.
A tabular report on the Opportunity object.
A tabular report on the Opportunity object.
Suggested answer: A

Explanation:

A summary report on the opportunity object should be created to add to the account page layout. A summary report groups rows of data by common values and allows users to create charts based on aggregate values. A summary report on the opportunity object can group opportunities by stage and display a chart of all related opportunities on the account detail page.

asked 23/09/2024
Luis Raul Juarez Cosio
38 questions

Question 85

Report
Export
Collapse

DreamHouse Realty wants to track how many lifts are being installed into customer garages. The To Be Installed custom checkbox field on the custom Lift object should be checked and an external system should be notified via an outbound message the next day when a lift is sold.

What automation tool should be used to complete this task?

Approval process
Approval process
Workflow
Workflow
Flow
Flow
Most voted
(1)
Most voted
Process Builder
Process Builder
Suggested answer: D

Explanation:

Process Builder is the best automation tool to complete this task. Process Builder can perform actions when a record is created or updated, and it can also schedule actions to execute at a later time. Process Builder can update a field, send an email, and call an outbound message as actions.

asked 23/09/2024
Sebastian Romero
45 questions

Question 86

Report
Export
Collapse

Nickname__c is a custom text field on a contact record that is utilized to override the contact's name appearing on an email template. This field is not required and is not always filled in.

Which formula should an app builder use to select the contact's preferred name for email communications?

IF(NOT(ISBLANK(Nickname__c)), Nickname_c,FirstName)
IF(NOT(ISBLANK(Nickname__c)), Nickname_c,FirstName)
Most voted
(1)
Most voted
IF(TEXT(Nfckname__c), Nickname_c,FirstName)
IF(TEXT(Nfckname__c), Nickname_c,FirstName)
IF (ISNUUL(Nteknarne _..c),Nicknamec,Firstftame)
IF (ISNUUL(Nteknarne _..c),Nicknamec,Firstftame)
IF(NOT(BLANKVALUE(Nickname__c)), Nickname__c, FirstName)
IF(NOT(BLANKVALUE(Nickname__c)), Nickname__c, FirstName)
Suggested answer: D

Explanation:

The formula that should be used to select the contact's preferred name for email communications is IF(NOT(BLANKVALUE(Nickname__c)),Nickname__c, FirstName). This formula checks if the Nickname__c field is blank or null, and if not, it returns the value of the Nickname__c field. Otherwise, it returns the value of the FirstName field.

asked 23/09/2024
Veridjan Hoxha
36 questions

Question 87

Report
Export
Collapse

Universal containers (uc) want to delete data in several fields for 5000 lead records. UC export the selected record IDs and fields that need to have data deleted in a csv file. Which two steps should an app builder suggest to meet these requirements? Choose 2 answers

Select the correct record type
Select the correct record type
Use import Wizard to update leads using the CSV file
Use import Wizard to update leads using the CSV file
Select insert null values in settings.
Select insert null values in settings.
Use Data Loader to update leads using the CSV file
Use Data Loader to update leads using the CSV file
Suggested answer: C, D

Explanation:

The two steps that should be suggested to meet these requirements are to select insert null values in settings and to use Data Loader to update leads using the CSV file. Selecting insert null values in settings will allow Data Loader to overwrite existing values with null values. Data Loader is a tool that can import, export, update, or delete large amounts of data.

asked 23/09/2024
DAVID Durbin
37 questions

Question 88

Report
Export
Collapse

Universal Containers (UC) has a custom Invoice object and a custom Invoice Line Item object. TTie Invoice Line-Item object has a lookup relationship to the Invoice. UC would like to convert the lookup relationship to a master-detail relationship but is unable to do so.

Which two reasons could be preventing this relationship conversion?

Choose 2 answers

Custom objects are unable to be on the detail side of a master-detail relationship.
Custom objects are unable to be on the detail side of a master-detail relationship.
There are already two master-detail relationships on the Invoice Line Item.
There are already two master-detail relationships on the Invoice Line Item.
Invoice Line-Item records exist without having the Invoice lookup field populated.
Invoice Line-Item records exist without having the Invoice lookup field populated.
There is a roll-up summary field on the Invoice object.
There is a roll-up summary field on the Invoice object.
Suggested answer: B, C

Explanation:

The two reasons that could be preventing this relationship conversion are that there are already two master-detail relationships on the Invoice Line Item and that Invoice Line Item records exist without having the Invoice lookup field populated. A custom object can have up to two master-detail relationships, so adding another one would exceed the limit. Also, a master-detail relationship requires that the detail records have a value in the master lookup field, so any records with a blank Invoice lookup field would prevent the conversion.

asked 23/09/2024
Danilo Romelli
49 questions

Question 89

Report
Export
Collapse

What are two reason to create an unmanaged package? Choose 2 answers

Distributing open-source projects on the AppExchange.
Distributing open-source projects on the AppExchange.
Publishing an application for sale on the AppExchange
Publishing an application for sale on the AppExchange
Deploying from a Developer Edition environment
Deploying from a Developer Edition environment
Distributing upgradeable components to another Salesforce org
Distributing upgradeable components to another Salesforce org
Suggested answer: A, C

Explanation:

The two reasons to create an unmanaged package are to distribute open-source projects on the AppExchange and to deploy from a Developer Edition environment. An unmanaged package is a collection of components that can be installed in any Salesforce org but cannot be upgraded or controlled by the developer. An unmanaged package can be used to share open-source projects or to deploy components from a Developer Edition environment to another org.

asked 23/09/2024
Barry Higgins
38 questions

Question 90

Report
Export
Collapse

Universal Containers is adding drone delivery to service offerings, and the developer has written and tested code prior to deployment to production, and the change set is ready to go. The deployment window will occur when the developer is on vacation.

What can the app builder do to ensure a smooth deployment to production?

Remove Apex classes from Abound change set.
Remove Apex classes from Abound change set.
Validate the inbound change set.
Validate the inbound change set.
Use a metadata package set.
Use a metadata package set.
Validate the outbound change set.
Validate the outbound change set.
Suggested answer: B

Explanation:

The app builder should validate the inbound change set to ensure a smooth deployment to production. Validating an inbound change set allows the app builder to test whether the change set can be deployed without errors in the target org. Validating an inbound change set does not affect any data or metadata in the target org.

asked 23/09/2024
Martin Lundgren
39 questions
Total 294 questions
Go to page: of 30
Search

Related questions