Which tools are included with the Lightning Flow product?
Correct Answer: B
Question 22
What does a flow connector do?
Correct Answer: C
Question 23
What should you avoid inside a loop?
Correct Answer: C
Inside a loop in a Salesforce flow, it's recommended to avoid executing actions such as creating or updating records directly. This can lead to hitting governor limits due to the potentially high number of operations being performed in a single transaction. Instead, it's better to collect the changes in a collection variable and perform bulk DML operations outside the loop.Reference: Salesforce Developer Blog - Best Practices for Designing Efficient Flows
Question 24
Which Process Builder component determines when a process runs?
Correct Answer: A
In Process Builder, the component that determines when a process runs is the "Criteria". Criteria are defined conditions that must be met for the process to execute its associated actions. When a record change or event occurs that matches the defined criteria, the process triggers its actions. This allows for precise control over when and how automated processes are executed in Salesforce.Reference: Salesforce Help Documentation on Process Builder.
Question 25
Which three building blocks are used to create a Flow?
Correct Answer: A,C,D
There are 3 main "building blocks" of any Flow: 1. Elements are the individual building blocks of the Flow. These perform logical actions such as assignments, decisions, or loops. There are also data elements that will query the database or commit record changes. 2. Connectors determine which element leads to which. Winter '21 enables Auto-Layout, and connects the Elements together automatically. 3. Resources are the individual variables of data that are to be used in a Flow - these can be strings of text, numbers, records, formulae, or collections.