decision-making structures require that the programmer specify one or more conditions to be evaluated or tested by the program, along with a statement or statements to be executed if the condition is determined to be true, and optionally, other statements to be executed if the condition is determined to be false.
| s.no | strings & description | 
|---|---|
| 1 | if statement the first decision-making statement is the ‘if’ statement. | 
| 2 | if/else statement the next decision making statement is the if/else statement. following is the general form of this statement. | 
| 3 | nested if statements sometimes, there is a requirement to have multiple ‘if’ statement embedded inside each other. following is the general form of this statement. | 
