Introduction
Nested conditional execution helps you make decisions inside other decisions. It lets your program check more than one condition step by step.
When you want to check if a number is positive, and then check if it is even or odd.
When you ask a user for their age and then check if they are a child, teenager, or adult.
When you want to check if a password is correct and then check if the user has admin rights.
When you want to decide what to wear based on weather and then based on temperature.