Examlex

Solved

What Will Be the Output of the Following Program When

question 26

Multiple Choice

What will be the output of the following program when the button is clicked on?
Private Sub btnDisplay_Click(...) Handles btnDisplay.Click
Dim word As String
word = "progression"
Strange(word)
End Sub
Sub Strange(var As String)
txtBox.Text = var.Substring(CInt(Int(var.Length / 2) ) , 1)
End Sub


Definitions:

Related Questions