March Special Limited Time 60% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 2493360325

Good News !!! Platform-App-Builder Salesforce Certified Platform App Builder (WI24) is now Stable and With Pass Result

Platform-App-Builder Practice Exam Questions and Answers

Salesforce Certified Platform App Builder (WI24)

Last Update 23 hours ago
Total Questions : 251

Platform-App-Builder is stable now with all latest exam questions are added 23 hours ago. Just download our Full package and start your journey with Salesforce Certified Platform App Builder (WI24) certification. All these Salesforce Platform-App-Builder practice exam questions are real and verified by our Experts in the related industry fields.

Platform-App-Builder PDF

Platform-App-Builder PDF (Printable)
$48
$119.99

Platform-App-Builder Testing Engine

Platform-App-Builder PDF (Printable)
$56
$139.99

Platform-App-Builder PDF + Testing Engine

Platform-App-Builder PDF (Printable)
$70.8
$176.99
Question # 1

DreamHouse Realty wants 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

Options:

A.  

An external ID field can be a number field.

B.  

An external ID field can be a URL field.

C.  

An external ID field can be a phone field.

D.  

An external IDfield can be a text field.

Discussion 0
Question # 2

DreamHouse Realty (DR) has many properties for sale and wants to identify the highest value of all Offer__c records on each Property__c record.

What solution should the app builder use to meet DreamHouse Realty's needs?

Options:

A.  

Master-Detail Child Object

B.  

Text Area (Long)

C.  

Multi-select Picklist

D.  

Lookup Object

Discussion 0
Question # 3

The convert button on leads should NOT appear until the lead status picklist is set to a qualified. What should an app builder suggest to meet these requirements?

Options:

A.  

Picklist dependency, page layouts, record types

B.  

Custom button, validation rule, record types

C.  

Process builder field update, quick action, record type

D.  

Page layout, record types, process builder field update

Discussion 0
Question # 4

Cloud Kicks wants to set up a new opportunity approval process and execute various action items based on the initial submission.

Which three action types should an app builder use in the approval process?

Choose 3 answers

Options:

A.  

Email Alert

B.  

Outbound Message

C.  

Task

D.  

Invocable Flow

E.  

Invocable Process Builder

Discussion 0
Question # 5

Universal Containers has a Lightning record page that supports both the mobile app and desktop. An app builder has downloaded a custom Lightning component from AppExchange, but users are unable to view the component on mobile devices.

What can be the issue?

Options:

A.  

The record page needs to be activated.

B.  

The component has been developed for Desktop Pages.

C.  

The component needs to be activated.

D.  

The record page template is unable to support mobile devices.

Discussion 0
Question # 6

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

Options:

A.  

Select the correct record type

B.  

Use import Wizard to update leads using the CSV file

C.  

Select insert null values in settings.

D.  

Use Data Loader to update leads using the CSV file

Discussion 0
Question # 7

Universal Containers has a custom picklist called Support Level on the Account object. They would like to show the real-time value of Support Level on all case records.

How should an app builder implement this requirement?

Options:

A.  

Create a formula field on the Case object using the TEXT function.

B.  

Create a formula field on the Account object using the ISPICKVAL function.

C.  

Create a Process Builder and use a field update on the Case object.

D.  

Create a roll-up summary field using Support Level on the Account object.

Discussion 0
Question # 8

The app builder at Cloud Kicks has created a custom object named Delivery__c to track the details of products shipped to customers.

Which two actions should the app builder take to prevent users in the shipping department from deleting delivery records?

Choose 2 answers

Options:

A.  

Remove the Delete permission from the Shipper profile.

B.  

Change the organization-wide default of deliveries to Private.

C.  

Remove the delete button from the Delivery page layout.

D.  

Use a permission set to remove the Delete permission.

Discussion 0
Question # 9

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

Options:

A.  

CASE(Priority, “Low”, “img/samples/flag_green.gif”, “Medium”, “img/samples/flag_yellow.gif”, “High”, “img/samples/flag_red.gif”, “/s.gif”)

B.  

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”)

C.  

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”)))

D.  

IMAGE (CASE( Priority, “Low”, “img/samples/flag_green.gif”, “Medium”, “img/samples/flag_yellow.gif”, “High”, “img/samples/flag_red.gif”, “Priority Flag”)

Discussion 0
Question # 10

universal containers has several large customers that sell their products through dealers. Each customer and dealer have an individual rep who works directly with uc and each is billed separately. How can an app builder implement these requirements?

Options:

A.  

Create a single account record, add each rep as a contact and create a custom dealer object

B.  

Create both customer and dealer as accounts, add each rep as a contact on the corresponding account and create an account hierarchy.

C.  

Create a single parent record, add each rep as a contact to the parent account and add each dealer as a child record

D.  

Create both customer and dealer as accounts, create account teams on each account and associate the dealer records with the parent account.

Discussion 0
Question # 11

Cloud Kicks has created accustom object called Interests which is joined to Accounts by way of a junction object called Account Interest.

What is the impact to users attempting to view an Account and the associated Account Interest records if they are without read access to the Interest object?

Options:

A.  

Users will be able to view the Account Interest records and will have read-only access to the Interest records.

B.  

Users will be unable to view Account records that have a related Account Interest record.

C.  

Users will be unable to view the Account Interest records or the Interest records.

D.  

Users will be able to view the Account Interest record, but unable to view the field or any information relating back to the Interest record.

Discussion 0
Question # 12

Universal Containers (UC) tracks Account locations in Zip Code, a custom text field with a validation rule to enforce proper formatting of the US ZIP+4 code for UC's orders.

What formula should the app builder create on Order to display only the first five digits of Zip Code from the parent Account?

Options:

A.  

BEGINS(Account.Zip_Code_r, 5)

B.  

TEXT(Account.Zip_Code_c, 5)

C.  

LEFT(Account.Zip_Code_c, 5)

D.  

LPAD(Account.Zip_Code__r, 5)

Discussion 0
Question # 13

Universal Containers utilizes opportunities and a custom object called Detaited.Sales__c. The company would like to roll sales metrics up to an opportunity for only Detailed.Sales__c records that have their picklist status set to Active.

What is the recommended method for the app bunder to achieve this request?

Options:

A.  

Utilize the AppExchange to download a third-party application that can roH up the sales dollars with the appropriate filter.

B.  

Create a master-detail relationship between the parent and child object with a roll-up summary field that fitters on the status held.

C.  

Create a lookup relationship between the parent and child object with a roll-up summary held that filters on the status field.

D.  

Utilize Apex code to roll up the desired amounts.

Discussion 0
Question # 14

On the Account Lightning record page, users need to see ten fields and the ability to sort and wrap text on their Related Lists.

What Related List type would the app builder select for the Related List Lightning component?

Options:

A.  

Enhanced List

B.  

Basic List

C.  

ListVlew

D.  

List Class

Discussion 0
Question # 15

When an opportunity is closed date is pushed more than 30days, manager approval is required. An approval process is in place but reps frequently forget to submit for approval to run the process.

How can an app builder ensure that these opportunities are submitted into the approval process?

Options:

A.  

Change the entry criteria on the approval process to criteria are met and lock the record on initial submission.

B.  

Use a validation rule and an email alert to the manager requesting approval.

C.  

Submit the record for approval from an automated process.

D.  

Give the manager the "API Enabled" permission to permit approval responses by email.

Discussion 0
Question # 16

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

Options:

A.  

Add a formula field to the Contact page layout.

B.  

Add an AppExchange Lightning Component to the mobile app.

C.  

Add the Twitter component to mobile view Lightning pages.

D.  

Add a Twitter Quick Action to the mobile navigation.

Discussion 0
Question # 17

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?

Options:

A.  

The ability to invite members to groups of which they are a member

B.  

The ability to @mention accounts of which they are a contact.

C.  

The ability to request access to public groups

D.  

The ability to interact with members of their groups

Discussion 0
Question # 18

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?

Options:

A.  

A summary report on the Opportunity object.

B.  

A summary report on the Account object.

C.  

A tabular report on the Account object.

D.  

A tabular report on the Opportunity object.

Discussion 0
Question # 19

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?

Options:

A.  

Approval process

B.  

Workflow

C.  

Flow

D.  

Process Builder

Discussion 0
Question # 20

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?

Options:

A.  

Full sandbox

B.  

Developer sandbox

C.  

Developer pro sandbox

D.  

Partial sandbox

Discussion 0
Question # 21

Universal Containers (UC) has created a picklist field called Status on three separate custom objects. UC has a requirement to share the list of values for this field across each object.

Which feature would an app builder use?

Options:

A.  

Field Update

B.  

Global Picklist Value Set

C.  

Dynamic Action

D.  

Dependent Picklist

Discussion 0
Question # 22

Universal Containers allows all employees to submit reviews for leadership using a custom object called Review. These Reviews should only be visible to the HR department and the employee who submitted the record.

Which three steps should an app builder take to properly control access to Reviews?

Choose 3 answers

Options:

A.  

Disable Grant Access Using Hierarchies.

B.  

Add a Master-Detail (User; field on the Review object.

C.  

Create a criteria-based Sharing Rule for the HR Department.

D.  

Remove Review Read permission from non-HR Department user Profiles.

E.  

Set organization-wide default to Private.

Discussion 0
Question # 23

Cloud Kicks (CK) tracks the support level of its customers on the account record page. CK wants to show a text notification on a case record page when the related account is a platinum-level customer.

How could an app builder meet this requirement?

Options:

A.  

Add a rich text area to the Case Lighting page > Set the component visibility of the rich text area to show when the account support level is platinum.

B.  

Create a text-only Visualforce page > Drag the Visualforce component into the Case page layout > Set its visibility to show when the account support level is platinum.

C.  

Create a text-only Visualforce page > Clone the case page layout > Drag the Visualforce component into the page, and assign the layout to platinum cases.

D.  

Clone the Case Lightning page > Add a rich text area to the new page, and assign this page to platinum accounts.

Discussion 0
Question # 24

A new app builder on the Cloud Kicks team is getting familiar with relationships in the data model.

What functionality would present the app builder a comprehensive view of all relationships in one pi

Options:

A.  

Schema Builder

B.  

Lightning Object Creator

C.  

Object Manager

D.  

Lightning Record Page

Discussion 0
Question # 25

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?

Options:

A.  

Data Loader

B.  

Salesforce Connect

C.  

Salesforce to Salesforce

D.  

Data Export Wizard

Discussion 0
Question # 26

An App Builder is loading the data into salesforce. To link the new records back to the legacy system, a field will be used to track the legacy ID on the account object. For future data loads this ID will be used when upserting records. Which field attribute should be selected? Choose 2 answers

Options:

A.  

Unique

B.  

Required

C.  

External ID

D.  

Text (encrypted)

Discussion 0
Question # 27

Cloud Kicks (CK) keeps track of its shoe inventory in Salesforce. When an order's status is changed to Activated, the inventory for the ordered shoe is reduced. At that point, a SOAP web service on the CK website must be called so that the website is updated to display the correct inventory amount for the shoe.

What should an app builder use to communicate to the CK web service when a shoe's inventory has changed?

Options:

A.  

After-Save Record-Triggered flow

B.  

Before-Save Record-Triggered flow

C.  

Process Builder

D.  

Workflow rule

Discussion 0
Question # 28

Universal Containers is piloting new features in an existing sandbox and wants to prevent outbound email sends during testing.

What should the app builder do to meet the requirement?

Options:

A.  

Email deliverability set to system email only.

B.  

Email configured for SMTP authentication.

C.  

Email relay to the configured host enabled.

D.  

Email deliverability set to no access.

Discussion 0
Question # 29

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

Options:

A.  

Roll-up summaries allow MAX, MIN, SUM, COUNT, and AV

G.  

B.  

An object can have 20 object references.

C.  

An object can have 25 roll-up summaries.

D.  

Roll-up summaries are limited to master-detail relationships.

Discussion 0
Question # 30

Ann app builder has been to display an overdue date that is two months after a tasks due date. Which approach should the app builder take?

Options:

A.  

Use process builder and set overdue date equal to Due Date + ((365/12)*2)

B.  

Create a formula field using Due Date + 60

C.  

Use process builder and set overdue Date equal to Due Date + 60

D.  

Create a formula field using the ADDMONTHS () function

Discussion 0
Question # 31

Ursa Major Solar wants to create a relationship between the standard Contact object and a custom Solar Project object Contacts potentially be related to multiple Solar Project objects, and a Solar Project can have multiple Contacts associated with it.

How should an app builder configure the data model?

Options:

A.  

One Master-detail relationship on Conduct and one Master-detail relationship on Solar Project

B.  

Two Lookup relationships on a new custom object

C.  

One Lookup relationship on Contact and one Lookup relationship on Solar Project

D.  

Two Master-detail relationships on a new custom object

Discussion 0
Question # 32

What are two capabilities of Schema Builder? Choose 2 answers

Options:

A.  

Editing custom settings

B.  

Creating a new record type

C.  

Showing selected objects on a page

D.  

Viewing page layouts in a new window

Discussion 0
Question # 33

Ursa Major Solar's sales team has been struggling to enter data on mobile since rollout; the team dislikes scrolling through all of the fields to input only the necessary data.

How could the app builder solve this with minimal impact to desktop users?

Options:

A.  

Filter components by device using Form Factor.

B.  

Reorder the fields to make sense for the reps when in the field.

C.  

Update the training documentation with better screenshots.

D.  

Deselect the phone radio button on the Lightning record page assignment.

Discussion 0
Question # 34

The CFO of Cloud Kicks needs to sign off on any major show retail deal that has a discount of more than 30% before the deal can be closed.

What feature would be used to handle this requirement?

Options:

A.  

Approval Process

B.  

Email Alert

C.  

Field Update

D.  

Workflow Rule

Discussion 0
Question # 35

Cloud Kicks wants to start tracking how many shoe subscriptions have been sold for each shoe catalog. A master-detail relationship exists between the Subscription__c and the Shoe__c objects.

Which type of field should an app builder create?

Options:

A.  

Roll-up summary field

B.  

Lookup field

C.  

Master-detail relationship field

D.  

Number field

Discussion 0
Question # 36

Service agents at Ursa Major Solar want a more condensed case view. Service agents also want to be able to modify the associated contact and account records from the case page layout on the Lightning record page.

Which two components should an app builder use to meet these requirements?

Choose 2 answers

Options:

A.  

Path

B.  

Rich text

C.  

Related record

D.  

Tabs

Discussion 0
Question # 37

Sales reps at Universal Containers create multiple quotes per opportunity.

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

Options:

A.  

Approval process

B.  

Validation rule

C.  

Workflow rule

D.  

Flow

Discussion 0
Question # 38

Cloud Kicks wants to make sure that users without the Marketing role are unable to update the Contact Retail Opt In picklist field to Yes.

What validation rule would an app builder use to prevent other users from making this update?

Options:

A.  

AND( $UserRole.Name != 'Marketing',ISCHANGED(Retail_Opt_In__c), ISPICKVAL(Retail_0pt_In_c,"Yes") )

B.  

AND( $UserRole.Name != 'Marketing', Retail_Opt_In_c = "Yes" )

C.  

AND( $UserRole.Name = 'Marketing', ISPICKVAL(Retail_Opt_In_c,"Yes") )

D.  

AND( $UserRole.Name = 'Marketing', Retail_Opt_In__c= "Yes" )

Discussion 0
Question # 39

Cloud Kicks (CK) wants to simultaneously delete a Supplier’s record and all Supplier ltem__c records if a

partnership ends with a supplier.

What solution could an app builder use to meet the requirement?

Options:

A.  

Many-to-many

B.  

Indirect lookup

C.  

Hierarchical

D.  

Master-detail

Discussion 0
Question # 40

An App Builder has been asked to integrate Salesforce with an external web service. The web service must be notified every time an Opportunity is Won. Which two can satisfy this requirement?

Options:

A.  

Use a workflow rule and an outbound message

B.  

Use a flow and an outbound message

C.  

Use a process and Apex Code

D.  

Use a process and an outbound message

Discussion 0
Question # 41

Universal Containers uses a custom picklist called Account_Region__c on the Account object. The vice president of

sales has asked that the value of this field is visible on Opportunities.

How should an app builder create this solution?

Options:

A.  

Lookup field

B.  

Field-level security

C.  

Field history tacking

D.  

Cross-object formula field

Discussion 0
Question # 42

When an opportunity close date is delayed by more than 60 days, the manager and the VP sales must approve the change. How can this requirement be met? Choose 2 answers

Options:

A.  

Build an approval process that requires unanimous approval from the manager and VP of sales.

B.  

Create a workflow rule that checks for close date less than 60 days and add an email alert.

C.  

Create a lightning process builder flow that submits the record for an approval process

D.  

Build a validation rule that does not allow a user to save the opportunity record.

Discussion 0
Question # 43

A production org includes custom objects containing confidential Information. A sandbox h needed that Includes data records, excludes all of the confidential objects, and can be refreshed weekly the confidential objects, and can be refreshed weekly.

What steps should an App Builder take to meet these requirements?

Options:

A.  

Create a Full Sandbox and use a sandbox template

B.  

Create a Developer Pro Sandbox and schedule Data loader to download selected object data weekly.

C.  

Create a Partial Copy Sandbox and use a sandbox template.

D.  

Create a Developer Sandbox and schedule Data loader to download selected object data weekly.

Discussion 0
Question # 44

Universal Containers wants to create a report to show job applications with or without resumes.

What considerations should the app builder be aware of when creating the custom report type?

Options:

A.  

An app builder is unable to create custom report types for objects they do not have permissions for.

B.  

Once the report type has been deployed it is unable to be deleted.

C.  

A primary object selection is locked once the custom report type has been saved.

D.  

When a custom or external object is deleted the report type and reports remain but cause an error when the report is run.

Discussion 0
Question # 45

Ursa Major Solar wants to convert the relationship between Galaxy and Star from a lookup relationship to a master-detail relationship so each Galaxy record can be equipped with a roll-up summary count of Star records.

Which two considerations should be made?

Choose 2 answers

Options:

A.  

The Star records are all required to have an existing value in their Galaxy field.

B.  

The Galaxy object has fewer than two existing master-detail relationships.

C.  

The Galaxy object is required to contain existing roll-up summary fields.

D.  

The Star object has fewer than two existing master-detail relationships.

Discussion 0
Question # 46

The developer at Universal Containers wants to test code in a sandbox environment. In order to ensure the code works properly, the sandbox needs to have at least half a gigabyte of data. The sandbox will need to be refreshed after each three-day sprint.

What type of sandbox should the App Builder provision to the developer?

Options:

A.  

Developer

B.  

Full Copy

C.  

Developer Pro

D.  

Partial Data

Discussion 0
Question # 47

An app builder wanes to show Groups as the last navigation menu item in the mobile app. However, (he app builder is unable to select Groups as one of the items on the drop-down menu.

What could cause this?

Options:

A.  

Groups is available in the recent section of the navigation menu.

B.  

Groups is included m the Smart Search items butunavailable on the navigation menu.

C.  

Groups is unavailable in the selected list for the navigation menu.

D.  

Groups is available in the Chatter section of the navigation menu.

Discussion 0
Question # 48

Universal Containers wants to match Opportunity data from Salesforce to the records in a financial database.

What is required to configure an indirect lookup relationship in Salesforce between the Salesforce Opportunity records and those in a financial database?

Options:

A.  

Salesforce Record ID

B.  

TEXT(Id)

C.  

External ID

D.  

CASESAFE(Id)

Discussion 0
Question # 49

Universal Containers has a private sharing model for Accounts and Opportunities and uses Territory Management to grant access to records.

• Sales rep A manually shares an opportunity record with sales rep

B.  

• Sales rep B has access to the Account even though the Account Is NOT In sales rep B's territory.

• Sales rep C CANNOT see either record.

Based on the information given, why can sales rep B see the Account related to the Opportunity?

Options:

A.  

Sales rep B has implicit access to the Account.

B.  

Sales rep B was added to the Account team.

C.  

Sharing set is granting access to the Account.

D.  

Account was also manually shared.

Discussion 0
Question # 50

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?

Options:

A.  

Favorites

B.  

Home page

C.  

Global actions

D.  

Utility bar

Discussion 0
Question # 51

An app builder at Ursa Major Solar has been working on a new custom app in a sandbox that has been upgraded to the next major Salesforce version, and their production instance is still on the current Salesforce version. The development is complete and they are ready to deploy a change set.

What should the app builder consider when planning the deployment?

Options:

A.  

It will fall if there is a feature only available in the next version.

B.  

The change set components will be upgraded to the next version in production.

C.  

The change set will be automatically deployed when production is upgraded.

D.  

The deployment is not possible due to different versions.

Discussion 0
Question # 52

Sales Managers want to be automatically notified any time there is a change to an Opportunity Close Date and want these changes to be tracked on the Opportunity.

Which two configurations should an app builder recommend?

Choose 2 answers

Options:

A.  

Create an Opportunity outbound message.

B.  

Use Process Builder on Opportunities and a Chatter post action.

C.  

Activate Historical Trending for Opportunities.

D.  

Enable Feed Tracking on Opportunities.

Discussion 0
Question # 53

Universal Containers (UC) has large data volumes and is nearing data storage limits. The planned solution is to archive historical data to reduce data storage in Salesforce; however, UC would still like to use reports, queries, and lookups on the archived information.

Which two options could meet this requirement?

Choose 2 answers

Options:

A.  

Big objects

B.  

Custom objects

C.  

Related objects

D.  

External objects

Discussion 0
Question # 54

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

Options:

A.  

The import wizard only allows value to be imported into a dependent picklist if they match the appropriate controlling field

B.  

Custom picklist field can be either controlling or dependent field

C.  

Multi select picklist can be dependent picklist but not controlling fields

D.  

Standard and custom picklist fields can be dependent fields.

E.  

Checkbox fields can be controlling fields but not dependent fields

Discussion 0
Question # 55

Universal Containers wants sales reps to get permission from their managers before deleting Opportunities,

What can be used to meet these requirements?

Options:

A.  

Process Builder with Submit for Approval action.

B.  

Approval Process with a triggered Flow process.

C.  

Approval Process with Time-Dependent Workflow action.

D.  

Two-step Approval Process.

Discussion 0
Question # 56

 

After universal containers converted qualified leads. Sales reps need to be able to report on converted leads. How should an app builder support for this requirement?

Options:

A.  

Enable preserve lead status in the lead conversion settings

B.  

Assign the representative view and edit converted leads permission

C.  

Ensure the representative has read access to the original lead records

D.  

Create a custom report type with converted leads as the primary object

Discussion 0
Question # 57

The Service Manager provided the app builder with color code requirements for case age on open cases.

  • New cases populate a green circle
  • Day-old cases populate a yellow circle
  • Three-day-old cases populate a red circle

How should an app builder implement this requirement?

Options:

A.  

Formula Field

B.  

Quick Action

C.  

Custom Button

D.  

Lightning Web Component

Discussion 0
Question # 58

An app builder has a custom component they want to make available on the utility bar, but the component is unavailable.

How should the component be tagged?

Options:

A.  

For use on record pages.

B.  

For use in Lightning App Builder.

C.  

For use on the utility bar.

D.  

For use in App Manager.

Discussion 0
Question # 59

Managers at Universal Containers want a quick way 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.

What should the app builder recommend?

Options:

A.  

Add Path on Account hierarchy

B.  

Add a custom link on Account

C.  

Customize a Global Quick Action

D.  

A Create a custom action

Discussion 0
Question # 60

DreamHouse Realty (DR) has a policy that requires the phone number on Contact to be deleted when the DoNotCall checkbox is checked.

What automation tool should the app builder recommend?

Options:

A.  

Quick action

B.  

Approval process

C.  

Validation rule

D.  

Workflow rule

Discussion 0
Question # 61

Cloud Kicks Is redefining its entire business process to convert the Manager Notes field from a long text area files. The goal is to encourage managers to be more concise In their comments and stay at 255 characters or less. There is preexisting information In the Manager Notes field that often is well beyond the character limit.

What would happen to any existing information if the app builder tries to convert a preexisting long text area field to text area'

Options:

A.  

Preexisting information will truncate to the first 255 characters.

B.  

Preexisting Information in the field will be completely lost.

C.  

Preexisting information will remain even if it was over 255 characters.

D.  

Preexisting information will cause an error message to pop up.

Discussion 0
Question # 62

Properly installing managed packages helps prevent conflicts with customizations made by customers and partners.

What functionality should be used to set up packages?

Options:

A.  

Description

B.  

Allow sharing

C.  

Help setting

D.  

Namespace

Discussion 0
Question # 63

Universal Containers has Public Read/Write as the Account organization-wide default (OWD) setting. Visitors to the customer community site report that they can see all of the company's account records.

How should an app builder configure Account sharing so that community users only see their own Account?

Options:

A.  

Create an account record type for external accounts.

B.  

Define an owner-based sharing rule for external accounts.

C.  

Define a permission set for external accounts.

D.  

Set the account external OWD to private.

Discussion 0
Question # 64

An app builder has downloaded a component from the AppExchange successfully; however, they are unable to add it to the Lightning home page.

Which two reasons can be preventing the app builder from being able to add the custom component?

Choose 2 answers

Options:

A.  

My Domain must be deployed to add custom components to the page with the App Builder.

B.  

A custom tab must be created to add custom components to the page with the App Builder.

C.  

The component requires a developer permission to add it to the page with the App Builder.

D.  

The component is tagged for record pages instead of home pages and is not showing up in the App Builder.

Discussion 0
Question # 65

An app builder has created a custom Lightning App and wants to make it available to the internal users at Universal Containers.

Which two steps are necessary to accomplish this task?

Choose 2 answers

Options:

A.  

Add the app to a Visualforce page.

B.  

Upload the app to Static Resources.

C.  

Create a subdomain using My Domain.

D.  

Build a Custom Tab for the app.

Discussion 0
Question # 66

Universal Containers is setting up salesforce for the first time. Management wants the sales and marketing teams to have different navigation names in the salesforce1 mobile app. Which option is available to an app builder to satisfy the requirement?

Options:

A.  

Create sales and marketing profiles to ensure read access to different objects

B.  

Create roles for sales and marketing and assign a custom homepage layout for each role.

C.  

Create mobile navigation menus for both the sales and marketing profiles.

D.  

Create public groups for sales and marketing and create mobile navigation menus for each group.

Discussion 0
Question # 67

Universal Container wants customers to be able to open cases from a public-facing website.

What should the app builder use to enable visitors to the website?

Options:

A.  

Outbound message

B.  

Web-to-case

C.  

Screen flow

D.  

Email-to-case

Discussion 0
Get Platform-App-Builder dumps and pass your exam in 24 hours!

Free Exams Sample Questions