21 what is assigned to lblmessagetext when the following code segment
Search for question
Question
21. What is assigned to lblMessage.Text when the following code segment executes? Dim strNamel As String = "Jim" Dim strName2 As String ="John" If strNamel > strName2 Then lblMessage.Text =
"Jim is greater" Else lblMessage.Text = “John is greater" End If a. True b. False c. Jim is greater d. John is greater