if condition
while loop
for loop
wend
Answer is Wrong!
Answer is Right!
The correct answer is A.
An if condition is used to take a decision based on a condition. If the condition is true, the
code inside the if block will be executed. If the condition is false, the code inside the else block will be executed.A while loop is used to execute a block of code repeatedly as long as
a condition is true.A for loop is used to execute a block of code a specified number of times.
Wend is not a valid programming language keyword.