1//An if statement can be followed ba an optional else statement, which
2//executes whe the Boolean expression is false
3if(Boolean_expression) {
4 // Executes when the Boolean expression is true
5}else {
6 // Executes when the Boolean expression is false
7}