wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Recap Quiz - Lesson 3

Total questions: 10

Worksheet time: 5mins

Name
Class
Date
1.

You are designing a no-code workflow to handle new support tickets. What is the main purpose of creating a process map before you start building the automation?

a)

To avoid having to add any error handling later

b)

To visualize every step, decision, and outcome so the workflow logic is clear

c)

To ensure the workflow runs on the fastest possible servers

d)

To choose which app integrations to install first

2.

In a no-code workflow, what is the main role of a router component?

a)

To stop the workflow whenever any error occurs

b)

To validate user input fields before a form is submitted

c)

To permanently store all workflow data for reporting

d)

To split one incoming path into multiple branches based on defined conditions

3.

You want only high-value leads to move forward to a sales follow-up step. Which workflow element is best suited to enforce this rule?

a)

An error handler that retries failed lead records

b)

A router that always sends all items to every branch

c)

A delay step that pauses all items for 24 hours

d)

A filter that allows only items matching specific lead criteria to pass

4.

When mapping a process for a no-code workflow, where should you typically place error-handling steps?

a)

Near critical steps and integrations where failures would have significant impact

b)

Only around filters, because they are most likely to fail

c)

Only at the very end of the workflow, after all other steps

d)

At every point where there is a decision router

5.

A Make.com scenario calls an external HTTP API as part of a critical financial workflow. Sometimes the API returns 500 errors. According to the error-handling framework taught in class, which combination is most appropriate?

a)

Use “Ignore” and proceed silently whenever 500 appears

b)

Use “Rollback” on all 4xx and 5xx responses to keep data consistent

c)

Implement a retry strategy only for transient faults (e.g., 500), with logging and correlation IDs

d)

Immediately stop the scenario and disable it on the first 500 error

6.

You are in early discovery for an event-management automation. Which mapping tool is most appropriate to clarify who supplies what inputs and who receives what outputs, before you worry about detailed flow logic?

a)

BPMN-lite with swimlanes

b)

SIPOC

c)

Value Stream Mapping

d)

Detailed Make.com scenario diagram

7.

In a no-code workflow, what is the main difference between a router and a filter?

a)

A router makes branching decisions, while a filter controls whether an item can pass a specific point

b)

A router only handles errors, while a filter only handles success cases

c)

There is no meaningful difference; they are interchangeable

d)

A router is used only at the start of a workflow, while a filter is used only at the end

8.

You need to design error handling for a step that enriches data from an external service. The business requires that processing continues even if enrichment fails, but the failure must be visible. What is the best approach?

a)

Fail the entire workflow when enrichment fails

b)

Skip the enrichment step in the process map

c)

Add an error branch that logs the failure and continues with default values

d)

Remove the error handling so the workflow never shows failures

9.

Which situation is the best candidate for handling via an “Ignore” error directive on a Make.com module, rather than rollback or stopping the scenario?

a)

A 401 Unauthorized error due to an expired token on the main data source

b)

A 400 Bad Request caused by a required field missing in the payload

c)

An intermittent 429 Too Many Requests returned by a rate-limited API

d)

A non-critical Slack notification failing, while the main database write succeeded

10.

When drawing a simple linear process map for automation design, which principle most directly helps avoid misinterpreting the order of operations?

a)

Using as many symbols as possible to capture nuance

b)

Alternating vertical and horizontal flows to save space

c)

Representing time and logical sequence from left to right without crossing lines

d)

Grouping all decisions at the end of the diagram to simplify notation