In the following Visual Basic code, what will be in msg, if str contains "visual basic"?<br><pre><code class="vbnet">Dim str as StringDim msg as StringIf str.toUpper="VISUAL BASIC" msg="VB.Net"Else msg="Not Visual Basic"EndIf</code></pre>

Correct Answer: Hi