Q. What will be the content of num, after code execution; if before code execution num has value 200?
β
Correct Answer: (B)
200
Explanation: If num<=100
num=num*2;
ElseIf num>500
Num=num*3;
Endif
num=num*2;
ElseIf num>500
Num=num*3;
Endif