The syntax of the method that can be used to move the focus to a control during run time is
.
a. object.GetFocus()
b. object.SetFocus()
c. object.Focus()
d. object.FocusThis()
Each variable in an array has a different name and data type.
a. True
b. False
The strPassword variable contains eight characters. Which If clause can be used to verify
that the password contains six letters followed by two numbers?
a. If strPassword.ToUpper = "[A-Z][A-Z][A-Z][A-Z][A-Z][A-Z]##" Then
b. If strPassword.ToUpper Like "[A-Z][A-Z][A-Z][A-Z][A-Z][A-Z]##" Then
c. If strPassword.ToUpper Matches "[A-Z][A-Z][A-Z][A-Z][A-Z][A-Z]##" Then
d. If strPassword.ToUpper Like "??????##" Then
The Remove method is used to remove characters only from the end of a string.
a. True
b. False
, Based on the code below, intScores(2, 1) is initialized to .
Dim intScores(,) As Integer = {{75, 90}, {9, 25}, {23, 56}, {6, 12}}
a. 25
b. 23
c. 56
d. 75
The Remove method removes characters from the original string.
a. True
b. False
It is uncommon for programmers to associate the items in a list box with the values stored
in an array.
a. True
b. False
Based on the code below, intScores(1, 1) is initialized to .
Dim intScores(,) As Integer = {{75, 90}, {9, 25}, {23, 56}, {6, 12}}
a. 9
b. 25
c. 75
d. 90
.
a. object.GetFocus()
b. object.SetFocus()
c. object.Focus()
d. object.FocusThis()
Each variable in an array has a different name and data type.
a. True
b. False
The strPassword variable contains eight characters. Which If clause can be used to verify
that the password contains six letters followed by two numbers?
a. If strPassword.ToUpper = "[A-Z][A-Z][A-Z][A-Z][A-Z][A-Z]##" Then
b. If strPassword.ToUpper Like "[A-Z][A-Z][A-Z][A-Z][A-Z][A-Z]##" Then
c. If strPassword.ToUpper Matches "[A-Z][A-Z][A-Z][A-Z][A-Z][A-Z]##" Then
d. If strPassword.ToUpper Like "??????##" Then
The Remove method is used to remove characters only from the end of a string.
a. True
b. False
, Based on the code below, intScores(2, 1) is initialized to .
Dim intScores(,) As Integer = {{75, 90}, {9, 25}, {23, 56}, {6, 12}}
a. 25
b. 23
c. 56
d. 75
The Remove method removes characters from the original string.
a. True
b. False
It is uncommon for programmers to associate the items in a list box with the values stored
in an array.
a. True
b. False
Based on the code below, intScores(1, 1) is initialized to .
Dim intScores(,) As Integer = {{75, 90}, {9, 25}, {23, 56}, {6, 12}}
a. 9
b. 25
c. 75
d. 90