Salesforce Platform App Builder Exam Guide (CRT-402) – Winter ’26 | Syllabus + Practice Questions

Salesforce Platform App Builder Exam Guide (CRT-402) – Winter ’26 | Syllabus + Practice Questions

Salesforce Platform App Builder Exam Guide (CRT-402) – Winter ’26 | Syllabus + Practice Questions


🆕

Updated for Latest Platform App Builder Exam

Last Updated: November 2025 | Based on current Salesforce Certified Platform App Builder (CRT-402) exam guide

This guide covers the Salesforce Certified Platform App Builder exam – including format, objectives, and practice questions. It focuses on building apps using declarative tools (clicks, not code) on the Salesforce Platform: data model, security, automation, UI, and deployment.

🧩 What is Salesforce Platform App Builder?

🛠️
Declarative App Designer

Validates your ability to design & build apps using click-based tools: objects, fields, relationships, automation, Lightning pages, and security – without needing Apex or full custom code.

👩‍💻
Ideal for Admins & Junior Devs

Target audience: power admins, business analysts, app builders, and aspiring developers with 6–12 months experience customizing Salesforce.

🚀
Bridge to Developer & Architect

A core milestone on the path towards Platform Developer I, consultant certs, and eventually Application Architect or Solution Architect.

🎓

Salesforce Certified Platform App Builder (CRT-402)

Exam guide for building scalable, secure applications with declarative tools on the Salesforce Platform.

Expect scenario-based questions around data modeling, security, automation (Flows), UI, and deployment.

📊 Platform App Builder Exam at a Glance

Duration
105 minutes
Questions
60 questions
(+ up to 5 non-scored questions)
Passing Score
63%
Exam Fee
$200 USD
Retake Fee
$100 USD
Prerequisites
No formal prereq (Admin/App Builder experience recommended)
Delivery
Testing center or online proctored

📝 Note: These details (questions, duration, passing score, fees) are based on the current Salesforce exam guide. Always double-check the official site before scheduling your exam.

👤 Who Should Take the Platform App Builder Exam?

  • Admins who already build custom apps, objects, and automation in Salesforce.
  • Business analysts or power users designing data models and processes for their teams.
  • Junior developers who want a solid declarative foundation before focusing on Apex/LWC.
  • Consultants who design solutions across Sales, Service, Experience Cloud using clicks-based tools.

Exam Objectives & Weightage (Platform App Builder)

1. Salesforce Fundamentals

23%

Understand Salesforce core capabilities, licensing, multi-tenant concepts, and how declarative tools fit into the overall platform.

  • Decide when to use standard vs custom objects.
  • Differentiate Salesforce editions & licenses at a high level.
  • Know which features are available in Lightning vs Classic.

2. Data Modeling & Management

22%

Design a scalable data model and manage data quality. Relationships, record types, roll-ups, and imports all live here.

  • Choose the right relationship type (lookup, master-detail, junction object).
  • Use record types and page layouts to support different business processes.
  • Understand when to use formula fields, roll-up summary fields, and summary reports.
  • Handle data imports, exports, and data quality tools (duplicate rules, validation rules).

3. Business Logic & Process Automation

28%

The heart of the exam: Flows, validation rules, formulas, assignment rules, and approval processes.

  • Select the right automation tool (record-triggered flow, schedule-triggered flow, approvals).
  • Build safe record-triggered flows that avoid recursion and bulk issues.
  • Use validation rules and formulas to enforce business logic.
  • Configure approval processes, auto-response rules, escalation rules, and assignment rules.

4. User Interface

17%

Design a productive, user-friendly experience using Lightning App Builder, page layouts, compact layouts, and quick actions.

  • Build custom Lightning record pages with dynamic visibility and components.
  • Configure global & object-specific quick actions.
  • Optimize layouts for mobile and for different profiles/record types.

5. App Deployment

10%

Move configuration safely between environments and plan releases.

  • Use change sets, sandboxes, and package-based deployments.
  • Understand deployment order (objects → fields → validation → flows → apps).
  • Know when to use tools like Salesforce CLI / metadata API (at a conceptual level).

📝 Sample Platform App Builder Questions

💡 Scenario-Based & Clicks-Not-Code Focus

The exam uses realistic business scenarios. Pay attention to keywords like “Admin wants to avoid code”, “future scalability”, “different page layouts per profile”, or “different lifecycle per region”.

Question 1: Data Model

A company needs to track projects and the many employees who work on each project. Each employee can work on multiple projects. The Admin must capture each employee’s role and allocation % per project. How should the data model be designed?

A) Add a multi-select picklist “Employees” on Project.

B) Create a junction object between Project and Employee.

C) Create a text field “Projects” on User to list all projects.

D) Use a hierarchical relationship on Project.

✓ Correct Answer: B) Create a junction object between Project and Employee.

Explanation: A many-to-many relationship with extra fields (role, allocation %) requires a junction object that has two master-detail relationships: one to Project and one to Employee.

Question 2: Validation vs Automation

Sales reps must enter a discount reason when the Opportunity Discount % is greater than 30%. What is the best declarative solution?

A) Workflow rule to send an email when the discount is high.

B) Validation rule requiring Discount Reason when Discount % > 30.

C) Approval process when Discount % > 30.

D) Checkbox field “High Discount” updated by a scheduled flow.

✓ Correct Answer: B) Validation rule requiring Discount Reason.

Explanation: Validation rules enforce data quality at save time. When a field must be filled based on another field’s value, a validation rule is the simplest and most maintainable solution.

Question 3: Flow Choice

When an Opportunity is closed won, the system must automatically:
• Create a custom “Implementation Project” record
• Create Tasks for the project team
• Send a Slack notification to the implementation channel (via an existing outbound integration)

What is the recommended automation tool?

A) Record-triggered Flow on Opportunity.

B) Workflow Rule with field update and email alert.

C) Scheduled Flow that runs nightly.

D) Manual quick action for the sales team.

✓ Correct Answer: A) Record-triggered Flow on Opportunity.

Explanation: Record-triggered flows are the recommended tool for automating related record creation and integrations when a record meets criteria (like Stage = Closed Won).

Question 4: UI Design

Support agents complain that the Case page is cluttered and scroll-heavy. They only need certain fields while working on open cases. What should the App Builder do to improve the experience using Lightning App Builder?

A) Remove fields from the page layout for all profiles.

B) Create a new Lightning record page with tabs and conditional visibility.

C) Ask users to create custom list views instead.

D) Enable in-app guidance for Case.

✓ Correct Answer: B) New Lightning record page with tabs & conditional visibility.

Explanation: Lightning record pages allow you to group fields into tabs/sections and show or hide components based on record criteria or user details, improving usability without removing fields from the underlying layout.

Question 5: Deployment

An App Builder has created a new custom object with record types, page layouts, validation rules, and flows in a sandbox. They now want to deploy the configuration to production. Which approach is recommended?

A) Recreate all configuration manually in production.

B) Use an outbound change set from sandbox to production.

C) Export all metadata via Data Loader and import to production.

D) Use a scheduled flow to replicate metadata.

✓ Correct Answer: B) Use an outbound change set.

Explanation: For declarative configuration between related orgs, change sets are the standard way to move metadata from sandbox → production without rebuilding everything.

💡 Exam Tip: Many questions offer both a “works” option and a best-practice option. Always prefer solutions that are scalable, declarative, and easy to maintain (Flows, proper data models, change sets) over quick hacks.

❓ Salesforce Platform App Builder FAQ

What are the prerequisites for the Salesforce Platform App Builder exam?

Check the official Salesforce certification page for current prerequisites. Most certifications recommend having relevant hands-on experience (typically 6-12 months) with the specific Salesforce product or feature area.

General recommendations:

  • Complete relevant Trailhead trails and superbadges
  • Get hands-on experience in a Developer Edition org
  • Review the official exam guide thoroughly
  • Complete practice exams and aim for 80%+ consistently
How should I prepare for the Salesforce Platform App Builder exam?

Recommended preparation steps:

  1. Study the exam guide: Review all exam objectives and weightage carefully
  2. Complete Trailhead: Finish all recommended trails and superbadges for this certification
  3. Hands-on practice: Use a Developer Edition org to practice the features and scenarios covered in the exam
  4. Practice exams: Take multiple practice exams and aim for 80%+ consistently
  5. Review release notes: Study Winter '26 release notes for new features that may appear in exam questions
  6. Focus on weak areas: Use exam weightage to prioritize study time on higher-weighted domains
What topics are covered in the Salesforce Platform App Builder exam?

Refer to the "Exam Objectives & Weightage" section above for detailed topic breakdown. The exam covers multiple domains with varying weightage. Focus more study time on domains with higher percentages.

Pro tip: Review the exam guide's domain breakdown carefully and ensure you have hands-on experience with all topics, especially those with higher weightage.

How long should I study before taking the Salesforce Platform App Builder exam?

Preparation time varies based on your background and experience:

  • With relevant experience: 2-3 months of focused study (10-15 hours per week)
  • Without experience: 4-6 months of dedicated study (15-20 hours per week)
  • With similar certifications: 1-2 months if you have related credentials

Best practice: Don't schedule your exam until you're consistently scoring 80%+ on practice tests and feel confident about all exam domains.

What is the passing score for the Salesforce Platform App Builder exam?

Most Salesforce certification exams require a passing score of 65-68%. The exact passing score is not disclosed by Salesforce and may vary slightly by exam version.

Important: Salesforce uses a scaled scoring system, meaning not all questions have equal weight. Focus on understanding all domains thoroughly rather than memorizing specific answers.

Strategy: Aim to score consistently above 80% on practice exams before scheduling your real exam to ensure a comfortable passing margin.

💡 Exam Success Tips

📚 Study the Exam Guide

Review the official exam guide thoroughly. Understand each domain's weightage and prioritize higher-weighted topics during your final review.

🛠️ Hands-On Practice

Use a Developer Edition org to practice all features covered in the exam. Real hands-on experience is invaluable for scenario-based questions.

📝 Practice Exams

Take multiple practice exams and aim for 80%+ consistently. Understand WHY answers are correct, not just memorizing them.

🆕 Review Release Notes

Study Winter '26 release notes. New features often appear in exam questions. This guide highlights key Winter '26 updates.

⏱️ Time Management

Manage your time during the exam. Flag difficult questions and return to them later. Ensure you answer all questions before time runs out.

🎯 Focus on Weak Areas

Review practice exam results and dedicate extra study time to domains where you scored lower. Use exam weightage to prioritize.

📚 Study Plan for Platform App Builder (3–6 Weeks)

🎯 Suggested Roadmap

📘
Week 1: Fundamentals & Data Model

Review Salesforce basics, licenses, and navigation. Build or refactor a data model with custom objects, relationships, record types, and fields in a Developer Edition org.

⚙️
Week 2–3: Automation Deep Dive (Flows)

Implement several record-triggered flows, validation rules, and approval processes for real scenarios (lead qualification, opportunity approvals, case escalations).

🧩
Week 4: UI & Deployment

Build custom Lightning record pages, dynamic forms, and actions. Practice moving changes between sandboxes using change sets.

Week 5–6: Practice Exams & Review

Take full-length practice exams in timed conditions. For every wrong answer, find the concept in docs/Trailhead, then rebuild a small example in your org.

💡 Exam Day Tips (Platform App Builder)

Manage Your Time

60 questions in 105 minutes ≈ ~1.75 minutes per question. Don’t spend more than 2–2.5 minutes on any single question. Use the mark for review feature.

Think Like an Architect

Prefer solutions that are scalable, secure, and maintainable. If code is an option, but a clean declarative solution exists, the exam usually favors the declarative one.

Watch for Keywords

Terms like “must be required”, “without code”, “multiple processes”, or “different user groups” often point to specific tools (validation rules, flows, record types, or page layouts).

❓ Platform App Builder – Frequently Asked Questions (FAQ)

Is Platform App Builder the same as the Administrator certification?

No. The Administrator cert focuses on managing an org (users, security, standard features). Platform App Builder focuses on designing & building custom apps using declarative tools: data model, automation, and UI. Many people do Admin first, then App Builder as the next step.

Do I need coding (Apex) experience to pass this exam?

No. The exam is focused on clicks, not code. You may see questions that mention Apex or APIs at a high level, but you are not expected to write code. You should, however, know when a requirement cannot be met declaratively and might need programmatic solutions.

How much experience do I need before attempting Platform App Builder?

Salesforce recommends around 6–12 months of hands-on experience building apps on the platform: creating custom objects, fields, record types, flows, and Lightning pages. The more real projects you’ve worked on, the easier the scenario questions will feel.

How does Platform App Builder compare to Platform Developer I?

Platform App Builder = deep on declarative tools and solution design. Platform Developer I = focuses on Apex, triggers, and Lightning Web Components. Many candidates use App Builder as a bridge: first learn to solve problems with clicks, then fill gaps with code in PD1.

How do I keep my Platform App Builder certification active?

Salesforce periodically releases maintenance modules on Trailhead. You’ll get an email when a maintenance is due. Complete the short quiz by the deadline to keep your certification in good standing.