1. Write the syntax of IF.. THEN... ELSE statement.
2. Write the syntax of FOR Statement.
Answers
Answered by
1
Answer:
If condition is True, the statements following Then are executed. If condition is False, each Else If (if any) is evaluated in turn. When a True condition is found, the statements following the associated Then are executed. Block If statements can be nested; that is, contained within one another.
example
if (condition) then
statement 1
else
statement 2
Explanation:
Similar questions