Q. In the following Visual Basic code, what will be in msg, if str contains "ik"?
Code:
Dim str as String Dim msg as String If str.toUpper="IK" msg="Hi" Else msg="Bye" EndIf
β
Correct Answer: (A)
Hi