The text contained in the identifying label is entered using . . . . . . . .
A. Sentence capitalization
B. Book title capitalization
C. Character capitalization
D. Word capitalization
Select an option to see the answer and solution.
The . . . . . . . . selection structure allows the programmer to specify that a different action is to be performed when the condition is True than when the condition is False.
A. if ... then ..else
B. do while
C. dynamic array
D. array
Select an option to see the answer and solution.
The . . . . . . . . means the Directory List Box.
A. drive list box
B. picture box
C. list box
D. dirlist box
Select an option to see the answer and solution.
Class is defined using . . . . . . . .
A. Class statement
B. Object statement
C. Access specifier statement
D. Instance statement
Select an option to see the answer and solution.
What will be the output of the following Visual Basic code?
Dim intScores As Integer = {78, 83, 75, 90}
Array.Sort(intScores)
A. 78, 83, 75,90
B. 75,78, 83,90
C. 78,75,83,90
D. 90,83,78,75
Select an option to see the answer and solution.
text box can handle string (text) and numeric data but not images or pictures
Select an option to see the answer and solution.
. . . . . . . . Executes the timer events at specified intervals of time
A. list box
B. radio
C. check box
D. timer controls
Select an option to see the answer and solution.
Who displays the list of projects contained in current solution?
A. Solution Explorer Window
B. List Window
C. Project Window
D. Catalogue Window
Select an option to see the answer and solution.
. . . . . . . . is used to store temporary data by programmers.
A. Addressed Location
B. Variable
C. Pointer
D. RAM
Select an option to see the answer and solution.
Which of the following assigns the string "Rover" to the fifth element in a one-dimensional array named strPetNames?
A. strPetNames(4) = "Rover"
B. strPetNames[4] = "Rover"
C. strPetNames(5) = "Rover"
D. strPetNames.Items.Add(5) = "Rover"
Select an option to see the answer and solution.
. . . . . . . . operator returns true, if all the sub-conditions are true.
Select an option to see the answer and solution.
What happens when a control is deleted from a form?
A. Does not delete the control's code
B. Does delete the control's code
C. Control is deleted in total
D. Control is not deleted, it can be brought back
Select an option to see the answer and solution.
Between the function's . . . . . . . . and . . . . . . . . you enter the instructions to process when the function is invoked.
A. Header and footer
B. Parameters and arguments
C. Call and return
D. Return type and function name
Select an option to see the answer and solution.
In the following code, the body of If will execute if strFirst contains?
If strFirst.ToUpper Like "T[OI]M" Then
Select an option to see the answer and solution.
You use the . . . . . . . . tool to add a radio button to a form.
A. Button
B. Radio
C. Option
D. RadioButton
Select an option to see the answer and solution.
In VB, . . . . . . . . is used to enter the more then one value in a single variable having same data types.
A. dim
B. structure
C. array
D. variable
Select an option to see the answer and solution.
The instruction in the loop body is referred to as . . . . . . . .
A. Priming read
B. After read
C. Before read
D. Update read
Select an option to see the answer and solution.
The computer creates the object when it processes the statement containing . . . . . . . . keyword.
A. Class
B. Object
C. New
D. Private
Select an option to see the answer and solution.
The instruction above the loop is known as the . . . . . . . .
A. Priming read
B. After read
C. Before read
D. Reading
Select an option to see the answer and solution.
To menu editor is available in . . . . . . . . button of the mouse
A. left
B. right
C. got focus
D. none of these
Select an option to see the answer and solution.