Basic programming concepts knowledge check Put your basic programming knowledge to the test. Question Title * What is your work email?This should be your Rewst email address Question Title * What is the purpose of an if statement in a workflow? To go through a list of items one by one To make decisions based on conditions To store data in variables To organize data into lists Question Title * You’ve set up a Rewst workflow to send a follow-up email. However, you only want to send it if the customer hasn’t responded yet. How would this decision be handled? Automatically send the email after 24 hours. Check if the customer has responded. If not, send the email. Wait for a manual update before sending the email. Send the email to every customer, no matter what. Question Title * A for loop is used to go through a __________, one item at a time. Condition Variable List Dictionary Question Title * You have a list of customer support tickets, and you want to find the ones marked as "urgent." How would you handle this in an automated workflow? Check each ticket to see if it’s marked as "urgent," and take action if it is. Mark every ticket as "urgent" by default. Send a notification for all tickets, whether they’re urgent or not. Skip over any tickets that don’t have a priority status. Question Title * An if statement helps a workflow make __________ based on whether a condition is true or false. Loops Variables Lists Decisions Done