Multiple Choice
What does the following program do with a person's name?
Private Sub btnDisplay click(...) Handles btnDisplay.click
Dim name, test As String
Dim n As String = ""
name = InputBox ("Enter your first name:")
For i As Integer To (name. Length - 1) Step 2
test name. Substring
test
Next
txtBox. Text
End Sab
A) in reverse order.
B) in reverse order and skips every other letter.
C) as it was entered.
D) as it was entered, but skips every other letter.
Correct Answer:

Verified
Correct Answer:
Verified
Q22: How many times will PETE be displayed
Q23: When Option Infer is set to On,
Q24: If no item in a list box
Q25: Which of the statements will unhighlight any
Q26: The following statement is valid.
Q28: The step value of a For...Next loop
Q29: A counter variable is normally incremented or
Q30: What is the data type of the
Q31: If the While condition in a Do
Q32: What is wrong with the following Do