The use of else is optional with if statement.
Answer:
The use of else is optional with the if statement.
If is the simplest form of decision statement.
If the condition is true, it prints out the indented expression. If the condition is false, it skips printing the indented expression.
So, the given statement is true.