?
In the following Visual Basic code, what will be in msg, if str contains "ik"?
In the following Visual Basic code, what will be in msg, if str contains "ik"?
Dim str as String
Dim msg as String
If str.toUpper="IK"
msg="Hi"
Else
msg="Bye"
EndIf
Dim str as String
Dim msg as String
If str.toUpper="IK"
msg="Hi"
Else
msg="Bye"
EndIf
Join the Discussion
Login to post a comment or share your explanation.
Login