You refer to the structure variable by its . . . . . . . .
A. Name
B. Data type
C. Dot operator
D. Member name
Select an option to see the answer and solution.
. . . . . . . . is used to separate related controls from other controls in the form.
A. GroupBox
B. GroupBox tool
C. View Window
D. Groups
Select an option to see the answer and solution.
In the following code, the while loop will execute if strId would have been . . . . . . . .
Do While strId Like "###*"
A. 123ABC
B. Fgh2
C. Xzya
D. Xyza
Select an option to see the answer and solution.
VB is the example of. . . . . . . .software .
A. backhand
B. front end
C. o.s
D. none of these.
Select an option to see the answer and solution.
The . . . . . . . . allows us to browse through the various properties, events and methods that are made available to us
A. properties window
B. project explorer
C. object
D. object browser
Select an option to see the answer and solution.
What will be in Msg after the following code is evaluated?
If 3>6 AndAlso 7>4 then
Msg="Hi"
Else
Msg="Bye"
EndIf
Select an option to see the answer and solution.
The intSales array is declared as follows: Dim intSales() As Integer = {10000, 12000, 900, 500, 20000}. The statement intSales(3) = intSales(3) + 10 will .
A. replace the 500 amount with 10
B. replace the 500 amount with 510
C. replace the 900 amount with 10
D. replace the 900 amount with 910
Select an option to see the answer and solution.
The . . . . . . . . indicates the purpose of the menu element.
A. Caption
B. Text
C. Name
D. Properties
Select an option to see the answer and solution.
. . . . . . . . structure can handle conditions with multiple outcomes in an easier manner
A. select case control
B. next
C. if condition
D. nested
Select an option to see the answer and solution.
The . . . . . . . . is used to show quick reference to the various elements of a project namely form, classes and modules
A. mdi
B. project explorer
C. menu bar
D. toolbox
Select an option to see the answer and solution.
The . . . . . . . . keyword indicates that an application can set the property's value, but it cannot retrieve the value.
A. Receive
B. Write
C. WriteOnly
D. ReceiveOnly
Select an option to see the answer and solution.
What does namespace contain?
A. Code that defines a group of related classes
B. Code to define hierarchy
C. Contains object definition
D. Contains class definition
Select an option to see the answer and solution.
if condition is end by . . . . . . . .
A. end if condition
B. next
C. stop
D. wend
Select an option to see the answer and solution.
The number that appears after the period in the . . . . . . . . value indicates the order in which the controls were added to the groupbox.
A. Tab index
B. Tab order
C. Groupbox tool
D. Tab value
Select an option to see the answer and solution.
. . . . . . . . is used to add a GroupBox to the interface.
A. GroupBox tool
B. Group tool
C. Properties Window
D. View Window
Select an option to see the answer and solution.
The . . . . . . . . validator is used to verify that control contains data verify that an entry passes the specified validation logic.
A. CompareValidator
B. RangeValidator
C. CustomValidator
D. ValidationSummary
Select an option to see the answer and solution.
The instructions in a . . . . . . . . loop are always processed at least once, whereas the instructions in a . . . . . . . . loop might not be processed at all.
A. Posttest, pretest
B. Pretest, posttest
C. Pretest, pretest
D. Posttest, posttest
Select an option to see the answer and solution.
The . . . . . . . . instruction tells the computer to close the current form.
A. Me.Close()
B. Close()
C. This.Close()
D. Close.this()
Select an option to see the answer and solution.
. . . . . . . . the documentation refers to putting the documentation in a safe place.
A. Debugging
B. Testing
C. Assembling
D. Printing
Select an option to see the answer and solution.
Ms Access is used to . . . . . . . .
A. store data
B. display data
C. create data
D. none of these
Select an option to see the answer and solution.