Free Platform-App-Builder Practice Test Questions (2026)

Total 259 Questions


Last Updated On : 8-Jul-2026


undraw-questions

Think You're Ready? Prove It Under Real Exam Conditions

Take Exam

Universal Containers (UC) has several large customers that sell their products through dealers. UC identifies and works with a single individual at each customer and at each dealer. Separate bills are sent to each customer and each dealer. These details need to be stored in a format that clearly displays the business entities and their appropriate representatives.
How should an app builder Implement these regalements?



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


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


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


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





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

Explanation:

Customers and Dealers are separate business entities:
Since both customers and dealers are distinct business entities with whom UC has direct relationships and sends separate bills, they should each be represented as separate accounts in Salesforce.
Representatives are individuals:
Each individual at the customer and dealer should be created as a contact and associated with their respective account.
Relationship between customers and dealers:
The Account Hierarchy feature in Salesforce allows you to establish a parent-child relationship between accounts. This would enable UC to represent that the customers sell their products through dealers.
Clear display of relationships:
This approach clearly displays the customers and dealers as distinct business entities and their relationship through the Account Hierarchy. The individual representatives are linked to their corresponding organizations as contacts.

Why other options are incorrect
A. Create a single parent record, add each rep as a contact to the parent account and add each dealer as a child record:
This option suggests creating a single parent record for both customers and dealers, which doesn't accurately represent them as distinct entities with direct billing relationships.
B. Create both customer and dealer as accounts, create account teams on each account and associate the dealer records with the parent account:
While creating both as accounts is correct, using account teams is for internal collaboration on an account, not for defining the primary business relationship between a customer and its dealers. The association mentioned is better represented by an account hierarchy.
C. Create a single account record, add each rep as a contact and create a custom dealer object:
Creating a single account record for the customer would not correctly represent the dealer as a separate billable entity. While custom objects offer flexibility, using the standard Account object with its hierarchy feature is the most straightforward and recommended approach for representing related business entities like customers and dealers.

Universal Containers (UC) has several picklist fields on the Account object whose values are routinely modified to meet changing business requirements. Due to these revolving changes, UC has a high number of inactive picklist values that are impacting system performance and user experience.
What can the app builder do to alleviate this issue?



A. Establish upper bound on existing picklists in Picklist Settings.


B. Set up Global Values in Picklist Value Sets.


C. Remove upper bound on inactive picklist values in Picklist Settings.


D. Convert the picklist fields to a different field type that will still meet the business requirements.





B.
  Set up Global Values in Picklist Value Sets.

Explanation:

The issue described involves a high number of inactive picklist values on the Account object’s picklist fields, which negatively impacts system performance and user experience. Salesforce provides Global Value Sets (also known as Picklist Value Sets) as a solution to manage picklist values more efficiently, especially when values are reused across multiple fields or need frequent updates.

B. Set up Global Values in Picklist Value Sets (Correct):
Global Value Sets allow you to define a single set of picklist values that can be reused across multiple picklist fields in different objects. By converting the picklist fields on the Account object to use a Global Value Set, Universal Containers can centrally manage the values, including deactivating or removing outdated ones. This reduces redundancy, simplifies maintenance, and can improve performance by minimizing the number of inactive values stored for each field. Additionally, Global Value Sets make it easier to update values across all associated fields at once, addressing the issue of frequent changes due to evolving business requirements.
Reference: Salesforce Help - Define Picklist Value Sets

Why not the other options?
A. Establish upper bound on existing picklists in Picklist Settings (Incorrect):
Salesforce does not provide an option in Picklist Settings to set an upper bound on the number of picklist values (active or inactive). While there are system limits (e.g., 1,000 total values for a standard picklist, including active and inactive), these are not configurable by the admin in the way described. This option does not address the issue of managing inactive values or improving performance.
Reference: Salesforce Help - Picklist Limitations

C. Remove upper bound on inactive picklist values in Picklist Settings (Incorrect):
There is no setting in Salesforce to specifically “remove an upper bound” on inactive picklist values. The platform imposes limits on the total number of picklist values (active and inactive), and inactive values still count toward this limit. Removing or adjusting such a bound is not a feature in Salesforce, and this option does not solve the performance or user experience issue.
Reference: Salesforce Help - Picklist Field Limits

D. Convert the picklist fields to a different field type that will still meet the business requirements (Incorrect):
Converting picklist fields to another field type (e.g., text, multi-select picklist, or lookup) may not be feasible or desirable, as it could disrupt existing business processes, reports, or integrations that rely on the picklist structure. Additionally, this does not directly address the issue of managing inactive values or improving performance. It’s a drastic change that may not meet the business requirements without significant rework.
Reference: Salesforce Help - Change Field Type

Recommended Approach:
Navigate to Setup > Object Manager > Picklist Value Sets.
Create a new Global Value Set with the required picklist values.
Update the Account object’s picklist fields to use the Global Value Set instead of individual picklist values.
Review and remove unnecessary inactive values from the Global Value Set to streamline performance.
Test the updated fields to ensure they meet business requirements and improve user experience.

Additional Notes:
Inactive picklist values can impact performance, especially in large orgs, as they are still stored and processed in the background (e.g., in reports, list views, or SOQL queries). Using Global Value Sets reduces redundancy and simplifies value management.
If the number of inactive values is significantly high, you can also archive or delete unused values (if not referenced in historical data) to further optimize performance, but this must be done cautiously to avoid data integrity issues.

Reference:
Salesforce Help: Create and Manage Global Picklist Value Sets
Salesforce Trailhead: Data Modeling - Picklist Administration

Universal Containers has several new fields they've requested for the Opportunity Product object. What should an app builder be able to configure using a formula field?



A. A hyperlink to the parent Account of the parent Opportunity.


B. A Rich Text area field that uses HTML to bold certain characters.


C. A combination of the Opportunity's Text and a Description fields.


D. A mix of functions and concatenation of 10 Account fields and 10 Opportunity fields.





C.
  A combination of the Opportunity's Text and a Description fields.

Explanation:

Formula fields in Salesforce are powerful tools that allow you to:
Reference parent fields (via relationships)
Concatenate text, numbers, and dates
Apply logic using functions like IF(), TEXT(), CONCAT(), etc.
In this case, the Opportunity Product (technically the OpportunityLineItem object) can access fields from its parent Opportunity using relationship syntax like Opportunity.Name or Opportunity.Description.
So, combining two text fields from the parent Opportunity — such as Opportunity.Text_Field__c + " " + Opportunity.Description__c — is fully supported in a formula field.

❌ Why the other options don’t work:
A. A hyperlink to the parent Account of the parent Opportunity
Formula fields cannot traverse two relationships (i.e., from Opportunity Product → Opportunity → Account). You can only go one level up.
B. A Rich Text area field that uses HTML to bold certain characters
Formula fields do not support Rich Text formatting or HTML styling like < b > tags.
D. A mix of functions and concatenation of 10 Account fields and 10 Opportunity fields
You cannot access Account fields from Opportunity Product via formula — that’s two levels up.
Also, this would likely hit the formula character limit (3,900 characters for compiled size).

🔗 References:
Salesforce Help: Formula Field Limits and Capabilities
Trailhead: Formulas & Validations

A business user at Universal Containers wants to update an Account directly from an Opportunity record.
What should the app builder create to allow the business user to make these edits?



A. An update record action with a related record component.


B. An update record action with a details component


C. Formula fields displaying the Account fields.


D. Opportunity fields updated by a process.





A.
  An update record action with a related record component.

Explanation:

Why:
Create an Update a Record quick action on the Account object (include the Account fields the user should edit). Then add a Related Record component to the Opportunity Lightning record page, point it at the AccountId lookup, and select that update action. This lets users edit the parent Account directly from the Opportunity page.

Why not the others:
B. Details component only edits the current record (Opportunity), not the related Account.
C. Formula fields are read-only—no editing.
D. Process/flow updates are automation, not a UI for the user to directly edit the Account.

Universal Containers (UC) has a time-sensitive need for a custom component to be built in 4 weeks; UC developers require additional enablement to complete the work and are backlogged by several months.
Which option should an app builder suggest to meet this requirement?



A. Use an AppExchange solution.


B. Build a screen flow page.


C. Build a Lightning record page.


D. Use a Boit solution





A.
  Use an AppExchange solution.

Explanation:

Universal Containers (UC) needs a custom component built within a tight 4-week timeline, but their developers are backlogged for months and require additional enablement. An AppExchange solution is the most suitable option to meet this time-sensitive requirement, as it allows UC to leverage pre-built, third-party components or applications that can be quickly installed and configured, bypassing the need for extensive custom development.

A. Use an AppExchange solution (Correct):
The AppExchange is Salesforce’s marketplace for pre-built apps, components, and solutions created by Salesforce partners or ISVs (Independent Software Vendors). These solutions can often be installed and configured quickly, meeting UC’s 4-week timeline without requiring significant developer effort. AppExchange solutions can range from free to paid and often include components that address common business needs, reducing the need for custom coding and enabling faster deployment.
This option is ideal given the developer backlog and the need for additional enablement, as many AppExchange solutions come with documentation, support, and configuration options that non-developers (like app builders) can utilize.
Reference: Salesforce Help - AppExchange Overview

Why not the other options?
B. Build a screen flow page (Incorrect):
While Screen Flows are powerful for creating guided user experiences, building a custom component using flows still requires significant design and configuration effort. Given the developer backlog and the need for additional enablement, creating a flow from scratch within 4 weeks may not be feasible, especially if the component is complex.
Reference: Salesforce Help - Screen Flows

C. Build a Lightning record page (Incorrect):
Creating a Lightning Record Page involves customizing the user interface for a specific object using the Lightning App Builder. While this is within an app builder’s skill set, it does not address the creation of a custom component (e.g., custom logic, functionality, or reusable code). Building a record page from scratch would also require developer input for any custom components, which is not viable given the backlog and timeline.
Reference: Salesforce Help - Lightning Record Pages

D. Use a Boit solution (Incorrect):
The term “Boit solution” appears to be a typo or misinterpretation in the context of Salesforce, likely intended to mean “Bolt solution” (Salesforce Bolt solutions are pre-built industry-specific templates). However, even if corrected to “Bolt solution,” this option is not ideal. Bolt solutions are typically industry-specific and may not address UC’s specific custom component needs. Additionally, Bolt solutions are less common and not as broadly applicable as AppExchange solutions for general custom component requirements.
Reference: Salesforce Help - Salesforce Industry Solutions

Recommended Approach:
Visit the AppExchange (accessible via Salesforce or at appexchange.salesforce.com).
Search for solutions or components that match UC’s requirements for the custom component. Evaluate options based on functionality, reviews, cost (free vs. paid), and compatibility with UC’s Salesforce org.
Install the solution in a sandbox for testing, then configure it to meet specific needs within the 4-week timeline.
Work with the provider’s documentation or support team to ensure proper setup without requiring extensive developer involvement.

Additional Notes:
AppExchange solutions can include managed packages, unmanaged packages, Lightning components, or flows, many of which are designed to be plug-and-play or easily configurable by app builders, aligning with UC’s resource constraints.
If no AppExchange solution fully meets the requirements, a partially suitable solution can often be customized more quickly than building from scratch, still addressing the time-sensitive need.
The app builder should verify licensing costs and security compliance (e.g., passing Salesforce’s security review) when selecting an AppExchange solution.

Reference:
Salesforce Trailhead: Explore AppExchange
Salesforce Help: Install a Package from AppExchange

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


B. Developer sandbox


C. Developer pro sandbox


D. Partial sandbox





B.
  Developer sandbox

Explanation:

DreamHouse Realty wants each team member to begin small projects in their own sandbox before moving into shared environments like partial or full sandboxes. The key requirements here are:
Low cost
Individual use
Quick setup
Basic development and testing
🔹 Developer Sandbox is ideal for this:
It’s lightweight and cost-effective
Provides a copy of metadata only (no data)
Perfect for unit testing, configuration, and development
Refreshes quickly and can be spun up for each team member

❌ Why the other options don’t work:
A. Full sandbox
Too resource-intensive and expensive for individual use; meant for performance testing and staging
C. Developer pro sandbox
Similar to Developer sandbox but with more storage — useful for larger dev tasks, but not necessary for small projects
D. Partial sandbox
Includes sample data and is better suited for integration or UAT testing, not individual dev work

🔗 References:
Salesforce Help: Sandbox Types and Considerations
Trailhead: Application Lifecycle and Sandbox Strategy

The Universal Containers data manager has been complaining about the lack of data integrity on Contact records.
Sales reps have not been filling out the Region field. The data manager wants the Region field filled out only for Contacts that are associated to Accounts that have been marked as ‘High Priority’ on the Customer Status field.
What can the app builder do to fulfill this requirement?



A. Make the Region field required on Contact.


B. Create a validation rule on Contact.


C. Create 4 validation rule on Account.


D. Make the Customer Status field required or Account.





B.
  Create a validation rule on Contact.

Explanation:

A validation rule on the Contact object is the correct solution for this conditional requirement. The validation rule can use a cross-object formula to check the value of the Customer Status field on the parent Account record.
The formula would look something like ISPICKVAL(Account.Customer_Status__c, 'High Priority') && ISBLANK(Region__c).
This formula will return TRUE (and prevent the record from saving) if both conditions are met: the associated Account is 'High Priority' AND the Contact's Region field is blank.

Why other options are incorrect
A. Make the Region field required on Contact:
This would make the field required for all Contact records, regardless of the Account's priority, which does not meet the specific condition requested.
C. Create 4 validation rule on Account:
The validation needs to happen on the Contact record, as that is where the required field (Region) is located. A validation rule on the Account object cannot prevent a Contact from being saved.
D. Make the Customer Status field required or Account:
This would ensure the Customer Status field is filled out on the Account, but it would not enforce the conditional requirement for the Region field on the Contact.

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)



A. Big objects


B. Custom objects


C. Related objects


D. External objects





A.
  Big objects

D.
  External objects

Explanation:

Why these work
A. Big objects: Built for archiving massive/historical datasets without consuming your standard data storage. You can query them with SOQL/Async SOQL and they support certain field types including Lookup (from the big object to standard/custom objects). Standard reporting isn’t built directly on big objects; the recommended pattern is to use Async SOQL to extract a working subset into a (custom) reporting object or analytics dataset for dashboards, while keeping the archive in the big object.
D. External objects (Salesforce Connect): Keep archived data outside Salesforce (so it doesn’t count toward org storage) but still surface it in Salesforce as External Objects. These support reports (with limits), SOQL queries, and lookup-style relationships (External Lookup/Indirect Lookup) so users can relate archived records to Salesforce data and run reports on them.

Why not the others
B. Custom objects: Data would still live in Salesforce, so this doesn’t alleviate storage limits.
C. Related objects: Not an archiving mechanism—just a generic term for relationships.

References
Big Objects: Implementation guide & capabilities; querying & reporting guidance.
External Objects / Salesforce Connect: Reporting support; relationships; behavior.

The Director of Marketing at Northern Trail Outfitters wants the app builder to create a formula field that tracks how many days have elapsed since a contact was sent a marketing communication. The director is only interested in whole units.
Which function should be used to return a date for calculating the difference?



A. DATFTIMEVALUE()


B. TODAY()


C. DATEVALUE()


D. NOW()





B.
  TODAY()

Explanation:

The TODAY() function returns the current date, ideal for calculating whole days elapsed since a marketing communication was sent (e.g., TODAY() - Last_Communication_Sent__c). It ensures a whole number result, meeting the requirement for whole units.

A. DATETIMEVALUE(): Converts text to DateTime, not needed for current date.
C. DATEVALUE(): Converts DateTime/text to Date, unnecessary since TODAY() is simpler.
D. NOW(): Returns current date and time, producing decimal days, not whole units.

Reference:
Salesforce Help - TODAY()

An app builder needs to deploy a new account detail page layout from sandbox to production.
Which three components should an app builder include in the Change Set to ensure it deploys successfully and visually as expected?
Choose 3 answers



A. Detail page layout


B. Custom fields


C. Custom actions


D. Lightning App Builder


E. System administrator profile





A.
  Detail page layout

B.
  Custom fields

C.
  Custom actions

Explanation:

Deploying a Lightning record page (often referred to as a "detail page layout" in the context of Lightning Experience) requires deploying all its dependent components to ensure it works correctly in the target org.

Why A is Correct:
The Detail page layout (officially called a Lightning Page) is the primary component you intend to deploy. This is the core item that must be included in the Change Set.

Why B is Correct:
If your page layout contains any custom fields, those fields must also be deployed. If the custom fields do not exist in the production org, the page layout will fail to load or will show errors for those missing fields. The deployment of the page layout will likely fail during validation if its dependent fields are missing.

Why C is Correct:
If you have added any custom actions (like an update record action) to the page's publisher layout, those actions must be deployed. The page layout references these actions. If they are missing in production, those specific components will not appear or function on the page.

Why D is Incorrect:
Lightning App Builder is the tool used to create and edit Lightning Pages. It is not a deployable component itself; it is a feature of the Salesforce platform. You deploy the output of the tool (the Lightning Page), not the tool.

Why E is Incorrect:
While profile settings control who can see the page layout, the System Administrator profile itself is not a component you include in a Change Set to make the page layout deploy or render correctly. Profile visibility for the page is handled by the page's assignment (which is part of the page deployment) or by permission sets. You do not deploy entire profiles for this purpose.

Reference:
Salesforce Help - "Change Sets Overview" and "Deploy Lightning Page Resources". The key principle is that when deploying any component, you must also deploy all its dependencies—the other metadata components it relies on to function. For a Lightning Page, this includes the fields, actions, and any other custom components placed on it.

Page 3 out of 26 Pages
PreviousNext
12345678
Platform-App-Builder Practice Test Home

Experience the Real Exam Before You Take It

Our new timed 2026 Platform-App-Builder practice test mirrors the exact format, number of questions, and time limit of the official exam.

The #1 challenge isn't just knowing the material; it's managing the clock. Our new simulation builds your speed and stamina.



Enroll Now

Ready for the Real Thing? Introducing Our Real-Exam Simulation!


You've studied the concepts. You've learned the material. But are you truly prepared for the pressure of the real Salesforce Certified Platform App Builder - Plat-Admn-202 exam?

We've launched a brand-new, timed Platform-App-Builder practice exam that perfectly mirrors the official exam:

✅ Same Number of Questions
✅ Same Time Limit
✅ Same Exam Feel
✅ Unique Exam Every Time

This isn't just another Platform-App-Builder practice questions bank. It's your ultimate preparation engine.

Enroll now and gain the unbeatable advantage of:

  • Building Exam Stamina: Practice maintaining focus and accuracy for the entire duration.
  • Mastering Time Management: Learn to pace yourself so you never have to rush.
  • Boosting Confidence: Walk into your Platform-App-Builder exam knowing exactly what to expect, eliminating surprise and anxiety.
  • A New Test Every Time: Our Salesforce Certified Platform App Builder - Plat-Admn-202 exam questions pool ensures you get a different, randomized set of questions on every attempt.
  • Unlimited Attempts: Take the test as many times as you need. Take it until you're 100% confident, not just once.

Don't just take a Platform-App-Builder test once. Practice until you're perfect.

Don't just prepare. Simulate. Succeed.

Take Platform-App-Builder Practice Exam