3. Consider this simple automation: When a new email arrives (trigger), the AI tool saves the attachment to a folder (action). What will happen if the trigger never occurs?
medium
A. The automation will not run
B. The AI tool will send an error message
C. The attachment will be saved anyway
D. The folder will be deleted
Solution
Step 1: Understand the role of the trigger
The trigger (new email arrival) must happen to start the automation.
Step 2: Analyze what happens if the trigger never occurs
If no new email arrives, the automation never starts, so no action happens.
Final Answer:
The automation will not run -> Option A
Quick Check:
No trigger means no run = C [OK]
Hint: No trigger means automation stays idle [OK]
Common Mistakes:
Assuming actions run without triggers
Expecting error messages automatically
Thinking unrelated folder changes happen
4. You created an automation that should send a welcome message when a new user signs up, but it never sends the message. What is the most likely error?
medium
A. The welcome message is too long
B. The AI tool does not support sending messages
C. The trigger for new user signup is missing or incorrect
D. The automation runs too fast
Solution
Step 1: Check the trigger setup
If the automation never starts, the trigger (new user signup) might be missing or set up wrongly.
Step 2: Consider other options
AI tools usually support sending messages; message length or speed rarely stops sending.
Final Answer:
The trigger for new user signup is missing or incorrect -> Option C
Quick Check:
Missing trigger stops automation = A [OK]
Hint: Check triggers first when automation fails [OK]
Common Mistakes:
Blaming AI tool capabilities without checking triggers
Thinking message length blocks sending
Assuming speed causes failure
5. You want to build an automation that sends a reminder email only if a task is not marked complete within 3 days. Which approach best fits this requirement?
hard
A. Use a trigger for task creation and an action to send email immediately
B. Use a trigger for task creation and add a delay of 3 days before checking completion
C. Send the reminder email every day regardless of task status
D. Manually check tasks and send emails yourself
Solution
Step 1: Identify the need for delay and condition
The reminder should only send after 3 days if the task is incomplete, so a delay and condition check are needed.
Step 2: Match the approach that includes delay and condition
Use a trigger for task creation and add a delay of 3 days before checking completion uses a trigger, waits 3 days, then checks if the task is complete before sending email.
Final Answer:
Use a trigger for task creation and add a delay of 3 days before checking completion -> Option B
Quick Check:
Delay + condition = correct automation = A [OK]
Hint: Add delay and condition to automate reminders correctly [OK]