Platform-App-Builder Practice Test Questions

289 Questions


DreamHouse Realty requires that field value changes for certain fields such as Asking_Price__c and Real_Estate_Agent„c on their House__c custom object show up prominently on Chatter. What Chatter feature should the app builder utilize?


A. Thanks


B. Publisher Actions


C. Topics


D. Feed Tracking





D.
  Feed Tracking

Explanation: Feed Tracking is the Chatter feature that allows field value changes for certain fields to show up on Chatter. Thanks, Publisher Actions, and Topics are other Chatter features, but they do not relate to field value changes.

Cloud Kicks (CK) wants to set up a custom child object to track gift cards issued to a customer. A key requirement is to track the total number of gift cards opened and gift cards issued on an Account. CK wants to permanently ensure the gift cards are unable to be moved across any other Account once it is created. On the gift card object, what type of field should be created to support this requirement?


A. Master-detail relationship


B. Roll-up summary


C. Formula


D. Lookup relationship





A.
  Master-detail relationship

Explanation:
The app builder should create a master-detail relationship field on the gift card object to support the requirement. A master-detail relationship field creates a parent-child relationship between two objects, where the master record controls certain behaviors of the detail record. In this case, the Account object would be the master and the gift card object would be the detail. By creating a master-detail relationship field, the app builder can meet these requirements:
Track the total number of gift cards opened and gift cards issued on an Account: This can be done by creating roll-up summary fields on the Account object that count or sum up the values from the gift card records related to each account.
Permanently ensure the gift cards are unable to be moved across any other Account once it is created: This can be done by making the master-detail relationship field required on the gift card object, which means that every gift card record must be associated with an account record and cannot be changed once set. Option B, C, and D are not types of fields that can support this requirement.

Universal Containers deployed an app in a large change set from a Developer Sandbox to a Developer Pro Sandbox used for testing. After testing, changes had to be made to several of the components in the change set. How should an app builder move the new changes to the Developer Pro Sandbox?


A. Refresh the text sandbox and re_display the change set.


B. Clone the change set and re_display


C. Rename the change set, add the changes and re_display


D. Update the change set and re_display





D.
  Update the change set and re_display

Explanation: Updating the existing change set with the new changes and redeploying is the most efficient way to move the updated components to the Developer Pro Sandbox.

Universal Containers wants users to have access to the pricing guidelines document when viewing a Contract related to an Account. What feature should an app builder use to create easy access to the document?


A. Quick Action on the Contracts object


B. Quick Action on the Account object


C. A custom detail page link on the Account object


D. A custom detail page link on the Contract object





D.
  A custom detail page link on the Contract object

Explanation: The feature that the app builder should use to create easy access to the document is a custom detail page link on the Contract object. A custom detail page link is a type of custom button or link that can display a URL or execute JavaScript when clicked. The app builder can create a custom detail page link on the Contract object that displays the pricing guidelines document in a new window or tab. Option A is incorrect because a quick action on the Contracts object is not suitable for this requirement, as quick actions are used to create or update records, log calls, send emails, or launch flows. Option B is incorrect because a quick action on the Account object is not suitable for this requirement, as quick actions are not related to the Contract object. Option C is incorrect because a custom detail page link on the Account object is not suitable for this requirement, as custom detail page links are not related to the Contract object.

Shipments at Cloud Kicks (CK) are created and updated by the warehouse staff in a shipping application. The Information needs to be pushed into Salesforce on a regular basis. CK's app builder creates a custom object called Delivery_c to track the information. How can the app builder prevent creating duplicate delivery records and update the correct existing records when migrating data from the shipping application?


A. Use the Import Wizard and match on the tracking number.


B. Create a unique External ID field and use Dataloader.


C. Use the Import Wizard and match on the Salesforce ID.


D. Create a duplicate match rule and use Dataloader.





B.
  Create a unique External ID field and use Dataloader.

Explanation: Creating a unique External ID field on the custom object and using Data Loader to upsert records prevents duplicates and ensures correct record updates by matching the unique ID.

Universal Containers expects impacts to operations due to increased demand. The executive team will reach out to current customers and wants to see the number of open cases for the account and parent account. What should an app builder use to display the number of open cases on the account page?


A. Flow


B. Approval Process


C. Roll-up summary


D. Custom object





C.
  Roll-up summary

Explanation: Roll-up summary fields can be used to count the number of related open cases for an account, including those from parent accounts if the relationship allows roll-up summaries.

A recently refreshed partial sandbox at Cloud Kicks has no data In the custom object Shipping. Checking In production, there are two million rows of data in the object. What could be the reason the data Is missing?


A. The sandbox was refreshed too early.


B. The selected objects in the sandbox template.


C. The Partial sandbox is at capacity.


D. The sandbox is still populating data





B.
  The selected objects in the sandbox template.

Explanation: The selected objects in the sandbox template. This is correct because a partial sandbox only copies a subset of data from production, and the data to be copied is determined by the sandbox template. If the Shipping object was not selected in the template, then its data would not be copied to the sandbox.

AW Computing uses a private sharing model for opportunities. Whenever an opportunity with a type of Service Agreement is created, all users in the Service Manager role should be able to view the opportunity. Which tool should AW Computing use to accomplish this?


A. Owner-based sharing rules


B. Criteria-based sharing rules


C. Apex sharing rules


D. Manual sharing





B.
  Criteria-based sharing rules

Explanation: Criteria-based sharing rules are the best tool to use for automatically sharing records based on specific criteria, such as the opportunity type being "Service Agreement." This rule can share opportunities with all users in a particular role, such as the Service Manager role, when the criteria are met, thereby adhering to the private sharing model while still providing necessary access.
A: Owner-based sharing rules focus on the record owner's role or group, not the record type.
C: Apex sharing is used for more complex scenarios not easily handled by declarative sharing settings.

The app builder at AW Computing has been asked to track the number of times a case has been reopened. Which solution should the app builder utilize to help with this request?


A. Scheduled Triggered flow


B. Screw flow


C. Process Builder


D. Apex Trigger





A.
  Scheduled Triggered flow

Explanation: A Scheduled Triggered flow can be used to increment a custom field on the Case object each time the case is reopened, effectively tracking the number of re-openings.

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)


B. CASESAFEID(Id)


C. TEXT(Id)


D. VALUE(Id)





B.
  CASESAFEID(Id)

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.

An app builder wants to create a custom object and 10 fields. What should they use to create the object, fields, and relationships quickly from one place?


A. Schema Builder


B. Developer Console


C. Manage Field Permissions


D. Lightning Object Creator





A.
  Schema Builder

Explanation:
To create a custom object along with multiple fields and relationships efficiently from a single interface, the Schema Builder is the ideal tool:
A. Schema Builder. This graphical tool provides a drag-and-drop interface for creating and modifying objects and fields in Salesforce, allowing for a visual layout of database schema.
Steps to use Schema Builder:
Go to Setup Schema Builder.
Drag the 'Object' element into the schema area to create a new custom object. Define the object's properties (e.g., label, API name).
Drag field elements like Text, Number, or Lookup into the object to create fields. Configure each field's properties according to your requirements.
Connect objects via lookup or master-detail relationships by dragging the relationship fields between them.
Save the layout to create all elements in Salesforce.
For more information, review Salesforce's Schema Builder documentation.

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?


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





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

Explanation: The solution that an app builder should use to meet this requirement is creating a custom report type with converted leads as the primary object. A custom report type is a template that defines the objects and fields that are available for a report. The app builder can create a custom report type that has converted leads as the primary object and includes fields from related objects, such as accounts, contacts, and opportunities. This way, sales reps can create reports on converted leads and see their related information. Option A is incorrect because enabling preserve lead status in the lead conversion settings does not affect the reporting on converted leads, but rather allows users to retain the original lead status after conversion. Option B is incorrect because assigning the representative view and edit converted leads permission does not affect the reporting on converted leads, but rather allows users to view and edit converted lead records. Option C is incorrect because ensuring the representative has read access to the original lead records does not affect the reporting on converted leads, but rather allows users to view the original lead records.


Page 2 out of 25 Pages
Previous