In the following Visual Basic code, what will be in msg, if str contains "ik"?<br><pre><code class="vbnet">Dim str as StringDim msg as StringIf str.toUpper="IK" msg="Hi"Else msg="Bye"EndIf</code></pre>

Correct Answer: Hi