Example 1: Skincare Quiz Branching by Skin Type
Context: A skincare store wants to ask different follow-up questions depending on whether the customer has oily, dry, or combination skin. Customers with different skin types have different concerns, and asking everyone the same follow-up questions produces less accurate recommendations. Quiz structure:- Question 1: “What is your skin type?” (Single selection: Oily / Dry / Combination / Sensitive)
-
Logic jumps:
- If “Oily” is selected → Jump to Q2a (concerns for oily skin: excess shine, large pores, breakouts)
- If “Dry” is selected → Jump to Q2b (concerns for dry skin: flakiness, tightness, sensitivity)
- If “Combination” or “Sensitive” is selected → Jump to Q2c (general skin concerns)
- Default → Jump to Q2c
Example 2: Gift Quiz Filtering by Recipient
Context: A gift shop wants to tailor questions based on who the gift is for. If someone is shopping for themselves, asking about the recipient’s age and preferences is irrelevant and adds unnecessary friction. Quiz structure:- Question 1: “Who are you shopping for?” (Single selection: For me / For someone else)
- Show condition: “What is the recipient’s age range?” only shows if the answer to Q1 is “For someone else”
- Show condition: “What is your relationship to the recipient?” only shows if the answer to Q1 is “For someone else”
Example 3: Supplement Quiz Ending Early for a Specific Answer
Context: A supplement brand sells products designed for adults. If a customer indicates they are under 18, the brand does not want to show adult supplement recommendations. Instead, they want to end the quiz early with an appropriate message. Quiz structure:- Question 1: “What is your age range?” (Single selection: Under 18 / 18–25 / 26–35 / 36+)
-
Logic:
- If “Under 18” is selected → Jump to End (a result page configured with a message such as: “Our products are designed for adults aged 18 and over. Please speak to a healthcare professional for guidance suitable for your age.”)
- Default → Continue to Q2
Example 4: Fashion Quiz Using Multiple Conditions for a Show/Hide
Context: A fashion store wants to ask about occasions (work, weekends, evenings out) but only when the customer selects a style that implies they dress for multiple contexts. Customers who select only “Activewear” only need activewear-specific questions. Quiz structure:- Question 1: “How would you describe your style?” (Multiple selection: Casual / Smart Casual / Formal / Activewear)
- Show condition: “What occasions do you dress for?” shows if the customer selects “Casual” OR “Smart Casual” OR “Formal”
- Customers who select only “Activewear” skip the occasions question