Q. What will be contained in Msg if grade entered by user is 'd'?
Code:
If grade=="A"
Msg ="Excellent"
ElseIf grade=="B"
Msg="Very Good"
ElseIf grade=="C"
Msg="Good"
ElseIf grade=="D"
Msg="Fair"
Else
Msg="Fail"
EndIf
β
Correct Answer: (B)
Fail