All Practice Exams

100+ Free Salesforce Process Automation AP Practice Questions

Pass your Salesforce Process Automation Accredited Professional exam on the first try — instant access, no signup required.

✓ No registration✓ No credit card✓ No hidden fees✓ Start practicing immediately
Not publicly published Pass Rate
100+ Questions
100% Free
1 / 100
Question 1
Score: 0/0

Which automation tool should an admin choose today for a brand new requirement that updates fields on the same record when it is saved?

A
B
C
D
to track
2026 Statistics

Key Facts: Salesforce Process Automation AP Exam

60 questions

Multiple-choice + multi-select

Salesforce Partner Learning Camp

90 min

Time Limit

Salesforce exam guide

68%

Passing Score

Salesforce exam guide

$150

Exam Fee

Partner Learning Camp registration

34%

Largest Domain

Tools and Best Practices

Online proctored

Delivery

Salesforce Partner Learning Camp

The Process Automation AP is a 60-question, 90-minute, 68% passing-score exam. The fee is $150 USD and registration is through the Salesforce Partner Learning Camp. The blueprint weights are Flow Basics 17%, Tools and Best Practices 34%, Testing/Distribution/Monitoring 22%, and Use Cases 27%. Salesforce recommends the Certified Administrator credential and at least six months of automation experience. Process Builder and Workflow Rules are no longer tested except for migration scenarios.

Sample Salesforce Process Automation AP Practice Questions

Try these sample questions to test your Salesforce Process Automation AP exam readiness. Each question includes a detailed explanation. Start the interactive quiz above for the full 100+ question experience with AI tutoring.

1Which automation tool should an admin choose today for a brand new requirement that updates fields on the same record when it is saved?
A.Workflow Rule
B.Process Builder
C.Before-save record-triggered Flow
D.Apex trigger
Explanation: Salesforce has retired Workflow Rules and Process Builder for new automations. A before-save record-triggered Flow is the recommended declarative tool for same-record field updates because it executes during the initial DML and avoids an extra DML step, making it the most efficient choice. Apex is reserved for logic that declarative tools cannot handle.
2What is the primary benefit of using a before-save flow trigger instead of an after-save flow trigger when updating fields on the triggering record?
A.Before-save flows can call subflows; after-save flows cannot
B.Before-save flows perform same-record field updates without an extra DML statement
C.Before-save flows run only when records are deleted
D.Before-save flows can send outbound email; after-save flows cannot
Explanation: Before-save record-triggered flows execute during the initial save transaction and update the triggering record in memory, so no additional DML statement is required. After-save flows would need a separate Update Records element, which counts toward DML governor limits. This makes before-save the most performant option for same-record field updates.
3Which Flow type is best suited for collecting input from a user in a guided, multi-step form on a Lightning record page?
A.Schedule-Triggered Flow
B.Record-Triggered Flow
C.Screen Flow
D.Platform Event-Triggered Flow
Explanation: Screen Flows are the only flow type that can render screens, making them the right choice for guided user-facing forms. They can be embedded on Lightning record pages, App pages, communities, and quick actions. Record-triggered, schedule-triggered, and platform event-triggered flows run in the background and have no UI.
4In Flow Builder, what is a collection variable used for?
A.Storing a single record returned by a Get Records element
B.Storing multiple records or values in an ordered list
C.Encrypting sensitive data at rest
D.Triggering a flow when a Salesforce record changes
Explanation: A collection variable holds multiple values or sObject records in an ordered list, which is essential for processing query results in a Loop element or passing bulk data to Update/Create elements. Single records use sObject variables, while primitives use text/number/boolean variables.
5Which Flow element should be used to retrieve a list of related Contacts for a given Account?
A.Get Records
B.Create Records
C.Update Records
D.Decision
Explanation: The Get Records element queries the database and returns one or many records based on filter criteria. To pull related Contacts for a specific Account, you would configure Get Records on the Contact object with a filter on AccountId and store the result in a collection variable. Create, Update, and Decision elements do not query data.
6What does an Auto-launched Flow do that distinguishes it from a Screen Flow?
A.It always shows a confirmation dialog to the user
B.It runs without user interaction and has no screens
C.It can only be triggered by Apex
D.It is restricted to running in sandboxes
Explanation: Auto-launched flows execute in the background with no UI and are typically invoked from Apex, processes, REST API, custom buttons, or as subflows from other automations. Screen Flows by contrast contain Screen elements that render to a user. Auto-launched flows can be triggered from many sources, not just Apex.
7Which automation tool should you choose to send a daily summary email to managers at 6:00 AM?
A.Record-Triggered Flow
B.Schedule-Triggered Flow
C.Screen Flow
D.Approval Process
Explanation: A Schedule-Triggered Flow runs on a defined schedule (e.g., daily at 6:00 AM) and can iterate over a record set returned by a filter. It is the declarative replacement for batch Apex for many recurring jobs. Record-triggered flows fire on data change, not time; Screen Flows require a user; Approval Processes are not schedule-driven.
8Which Flow element evaluates a value against multiple outcomes and routes the flow accordingly?
A.Assignment
B.Decision
C.Loop
D.Pause
Explanation: The Decision element evaluates a value against one or more outcomes (essentially if/else-if logic). Each outcome can have its own conditions, and the flow follows the first matching path. Assignment changes variable values, Loop iterates a collection, and Pause waits for time or platform events.
9In Flow Builder, what does an Assignment element do?
A.Sends an email to a queue
B.Sets the value of a variable, collection, or sObject field
C.Queries records from the database
D.Pauses the flow until a platform event arrives
Explanation: The Assignment element changes the values of variables, collection variables, or fields on an in-memory sObject or apex-defined variable. It performs no DML by itself; subsequent Create or Update elements are needed to persist changes.
10Which type of variable in Flow Builder is required when you want to receive input from a calling Apex class or another flow?
A.A constant
B.A variable with Available for input enabled
C.A formula resource
D.A text template
Explanation: Variables can be marked Available for input and Available for output. Marking them Available for input lets calling Apex or parent flows pass values into the variable. Constants are immutable; formula resources compute on the fly; text templates are display-only strings.

About the Salesforce Process Automation AP Exam

The Salesforce Process Automation Accredited Professional (AP-221) is offered through the Salesforce Partner Learning Camp and validates an admin's, developer's, consultant's, or architect's ability to design, build, test, distribute, and monitor process automation on the Salesforce Platform. Coverage is Flow-first: record-triggered, screen, schedule-triggered, auto-launched, platform-event-triggered, and orchestration flows, plus Approvals, Einstein Next Best Action, validation rules, and integration via External Services, External Objects, Invocable Apex, and Platform Events. Workflow Rules and Process Builder are tested only in the context of migration to Flow.

Assessment

60 multiple-choice and multi-select questions

Time Limit

90 minutes

Passing Score

68%

Exam Fee

$150 (Salesforce (Partner Learning Camp))

Salesforce Process Automation AP Exam Content Outline

17%

Flow Basics

Benefits of automation, choosing the right tool for a scenario, building blocks of all flow types (record-triggered, screen, schedule-triggered, auto-launched, platform-event-triggered, orchestration), elements (Get/Update/Create/Delete, Decision, Loop, Assignment, Screen, Action), variables, collections, formulas, and the order of execution.

34%

Tools and Best Practices

Capabilities, limitations, components, and elements of Flow Builder, Orchestration, and Approvals; Migrate to Flow tool; bulkification (single Get before Loop, single DML after Loop); governor limits (100 SOQL/150 DML sync); fault paths; recursion control; trigger order; naming conventions; system vs user context; Apex vs Flow guidance; invocable Apex; HTTP Callout / External Services.

22%

Testing, Distribution, and Monitoring

Identifying test cases; Debug runner with rollback; bulk testing via Data Loader (200 records); deployment via Change Sets, DevOps Center, and SFDX; distribution via Lightning App Builder, Quick Action of type Flow, Experience Cloud, custom buttons, REST API; monitoring via Paused and Waiting Interviews, Apex Jobs / Scheduled Jobs, and Process Automation error emails.

27%

Use Cases

Mapping process automation to sales (discount approvals, lead routing, opportunity sharing), service (case routing, escalation, NBA recommendations), and portals/Experience Cloud (guest-user screen flows, contact-us forms); integration patterns (Platform Events, External Services, External Objects); approval audit (ProcessInstance objects); and reusable subflow design.

How to Pass the Salesforce Process Automation AP Exam

What You Need to Know

  • Passing score: 68%
  • Assessment: 60 multiple-choice and multi-select questions
  • Time limit: 90 minutes
  • Exam fee: $150

Keys to Passing

  • Complete 500+ practice questions
  • Score 80%+ consistently before scheduling
  • Focus on highest-weighted sections
  • Use our AI tutor for tough concepts

Salesforce Process Automation AP Study Tips from Top Performers

1Memorize the four domain weights (17/34/22/27) so you can pace your study time correctly.
2Know cold which trigger type fits each scenario: before-save vs after-save record-triggered, screen, schedule-triggered, auto-launched, platform-event, orchestration.
3Use $Record__Prior to detect field changes (e.g., {!$Record.Status} != {!$Record__Prior.Status}) — change detection appears in many questions.
4Drill bulkification: single Get Records before a Loop, build a collection inside the Loop, then a single Update Records after — never DML inside a Loop.
5Memorize sync governor limits (100 SOQL, 150 DML) and that Run Asynchronously gives a fresh transaction so callouts can fire.
6Know the Migrate to Flow tool and the retirement guidance for Workflow Rules and Process Builder — questions will test the why and the how.
7Practice approver routing options: hard-coded user, queue, manager of submitter, related User lookup field, and parallel vs serial steps.
8Be able to choose between Flow Orchestration (multi-user, multi-stage) and a single record-triggered flow (single transaction) based on the scenario.

Frequently Asked Questions

How many questions are on the Process Automation Accredited Professional exam?

Salesforce's current public exam guide lists 60 multiple-choice and multi-select questions delivered in 90 minutes. The passing score is 68%, which equals 41 correct out of 60. The exam is delivered online-proctored via the Salesforce Partner Learning Camp.

What does the Process Automation AP cost?

Registration is $150 USD plus applicable taxes, with the same fee for retakes. Salesforce partners can sometimes earn vouchers through the Partner Learning Camp; access to the Partner Learning Camp is needed to register for the exam.

Are Workflow Rules and Process Builder still on the exam?

Not as build topics. The current exam centers on Flow Builder. The Migrate to Flow tool and the rationale for moving off Workflow Rules and Process Builder are in scope, but you will not be asked to author new logic in those retired tools.

Are there prerequisites for the Process Automation AP?

There is no required prerequisite. Salesforce strongly recommends the Salesforce Certified Administrator credential and at least six months of automation implementation experience. The exam targets admins, developers, consultants, and architects.

Which domain is weighted most heavily?

Tools and Best Practices is the largest single domain at 34%, followed by Use Cases at 27%, Testing/Distribution/Monitoring at 22%, and Flow Basics at 17%. Together, Tools and Use Cases account for 61% of the exam, so most study time should focus there.

How long should you study for the Process Automation AP?

Most candidates with prior Flow experience plan on 30 to 50 hours over 4 to 6 weeks. Build a few flows in a Developer Edition org, run the Migrate to Flow tool on a sample Workflow Rule, and complete two timed 60-question mocks before booking.