The else keyword is always used in association with the if keyword in an if-else statement. The else clause is optional and is executed if the if condition is false.
if (condition)
{
<statements>
}
else
{
<statements>
}
None.