Define an algorithm
A process or set of instructions to solve a problem by a computer
Explain how the If construct works
if (boolean expression)
{
carries out operation
}
else {
other
}
how can else if be used
To make a response for multiple ranges of values or expressions
Give an example of using a nested if construct
if an input is more than 10
if an input is less than 20
Display the value is between 10 and 20
When can switch statements be used
When there are multiple number of cases