App Builder Exam including Flows Flashcards

1
Q

What is a Screen Flow in Salesforce?

A

A Screen Flow is used to guide users through a series of screens to collect or display information.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is an Auto-launched Flow in Salesforce?

A

An Auto-launched Flow runs in the background without user interaction and can be triggered automatically.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is a Scheduled Flow in Salesforce?

A

A Scheduled Flow runs at scheduled intervals without user interaction, useful for performing regular maintenance tasks or updates.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is a Record-Triggered Flow in Salesforce?

A

A Record-Triggered Flow executes automatically when a record is created, updated, or deleted.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a Platform Event-Triggered Flow in Salesforce?

A

A Platform Event-Triggered Flow runs when a platform event is received, often used for real-time event handling and integration.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is an In-Bound Messaging Flow in Salesforce?

A

An In-Bound Messaging Flow sends messages from Salesforce to external systems in response to specific actions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is A Screen Flow is used to guide users through a series of screens to collect or display information.

A

A Screen Flow in SAlesforce?

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is An Auto-launched Flow runs in the background without user interaction and can be triggered automatically.

A

An Auto-lAunched Flow in SAlesforce?

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is A Scheduled Flow runs at scheduled intervals without user interaction, useful for performing regular maintenance tasks or updates.

A

A Scheduled Flow in SAlesforce?

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is A Record-Triggered Flow executes automatically when a record is created, updated, or deleted.

A

A Record-Triggered Flow in SAlesforce?

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is A Platform Event-Triggered Flow runs when a platform event is received, often used for real-time event handling and integration.

A

A PlAtform Event-Triggered Flow in SAlesforce?

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is An In-Bound Messaging Flow sends messages from Salesforce to external systems in response to specific actions.

A

An In-Bound MessAging Flow in SAlesforce?

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What Assigns values to variables in the flow?

A

Elements/Assignment

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What Retrieves data from Salesforce objects and makes it available to the flow?

A

Elements/Get Records

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What Creates new records in Salesforce based on flow input?

A

Elements/Create Records

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What Updates existing records in Salesforce?

A

Elements/Update Records

17
Q

What Deletes records from Salesforce?

A

Elements/Delete Records

18
Q

What Branches the flow into different paths based on conditions?

A

Elements/Decision

19
Q

What Iterates over a collection of records and performs actions on each?

A

Elements/Loop

20
Q

What Invokes another flow inside the current flow, allowing for reusability?

A

Elements/Subflow

21
Q

What Displays a screen to the user, allowing for user input?

A

Elements/Screen

22
Q

What Invokes external actions such as sending an email or calling an Apex class?

A

Elements/Action

23
Q

What Temporarily pauses the flow execution based on a condition?

A

Elements/Pause

24
Q

What Sets the values of flow variables?

A

Elements/Assignment

25
Q

What Stores data that can be used throughout the flow?

A

Resource Types/Variable

26
Q

What Stores a fixed value that cannot be changed during the flow?

A

Resource Types/Constant

27
Q

What Performs calculations or evaluations to produce dynamic values?

A

Resource Types/Formula

28
Q

What Stores records retrieved or created within the flow?

A

Resource Types/Record Variable

29
Q

What Stores a collection (list) of records?

A

Resource Types/Collection Variable

30
Q

What Stores text that can include dynamic values from other resources?

A

Resource Types/Text Template

31
Q

What Allows invoking custom Apex code or methods as part of the flow?

A

Resource Types/Apex Action

32
Q

What Predefined variables that provide context or information about the flow execution?

A

Resource Types/Global Variable

33
Q

What Local variables created within a flow to hold data?

A

Resource Types/Flow Variable