Conditionals
Understand the syntax and logic of if-else statements, comparison and logical operators, switch constructs, and the ternary operator to control program flow in C#.
Conditional statements are a basic component of many programming languages. They control program flow depending on given conditions.
The if-else statement
Consider the following scenario. We want to determine if a user is an adult based on their age. A user is an adult if they are 18 or older