If the condition given after IF is true, statement(s) specified after _______ is executed.
a) THEN
b) ELSE
c) END
Answers
Answered by
1
Answer:
Then
Explanation:
if (condition)
then(//if statement is true)
{
}
else(if statement is false)
{
}
Similar questions