The variable that does not change the value during execution of program is. . . . . . . .
A. numeric
B. string
C. constant
D. none
Select an option to see the answer and solution.
The extension of class module is . . . . . . . .
Select an option to see the answer and solution.
. . . . . . . . is a numeric variable used for counting something.
A. Accumulator
B. Counter
C. Positive
D. Negative
Select an option to see the answer and solution.
Radio button in an interface is labeled using . . . . . . . . property.
A. Text
B. Caption
C. Name
D. Label
Select an option to see the answer and solution.
. . . . . . . . is a counter-controlled loop.
A. For..next loop
B. Do..while loop
C. While loop
D. If statement
Select an option to see the answer and solution.
. . . . . . . . is used to converting a string to uppercase.
A. toUpper
B. toLower
C. toUpperCase
D. toLowerCase
Select an option to see the answer and solution.
. . . . . . . . are the characteristics that describe the object.
A. Classes
B. Attributes
C. Objects
D. Instances
Select an option to see the answer and solution.
The . . . . . . . . keyword is necessary only in a dual-alternative selection structure.
A. Alternative
B. Next
C. Dual
D. Else
Select an option to see the answer and solution.
The . . . . . . . . keyword tells the computer to pass the variable's address rather than its contents.
A. ByRef
B. ByVal
C. ByAdd
D. ByPoint
Select an option to see the answer and solution.
Vb allows programmers to define a data type before start the program it is called . . . . . . . .
A. explicit
B. implicit
C. dim
D. none of these
Select an option to see the answer and solution.
. . . . . . . . can be used to advance the insertion point in a file or on the printer.
A. Advance pointer
B. Nextpoint pointer
C. NextLine constant
D. ControlChars.NewLine constant
Select an option to see the answer and solution.
Designers generally use . . . . . . . . font style and . . . . . . . . font size in an interface.
A. One, two
B. Two, one
C. Four, one
D. One, one
Select an option to see the answer and solution.
The . . . . . . . . is one of the controls that is used to handle graphics
A. picture box
B. combo
C. label
D. text
Select an option to see the answer and solution.
During runtime checkbox can be selected, if a checkbox is already selected or not by using the . . . . . . . . property.
A. Checked
B. Unchecked
C. On
D. Selected
Select an option to see the answer and solution.
. . . . . . . . is the default name assigned to the label control.
A. Label0
B. Label1
C. NewLabel
D. DefaultLabel
Select an option to see the answer and solution.
Which of the following calculates the quarterly payment on a loan of $6000 for 3 years at 9% interest? Payments should be expressed as a negative number.
A. Financial.Pmt (0.09/4, 3*12, 6000)
B. Financial.Pmt (0.09/4, 3*4, 6000)
C. Financial.Pmt(0.09/12, 3*12, 6000)
D. Financial.Pmt( 0.09/12, 3*4, 6000)
Select an option to see the answer and solution.
The. . . . . . . . control lets the user selects or unselects an option we can select more than one option from the group.
A. combo box
B. checkbox
C. radio
D. text
Select an option to see the answer and solution.
Programmers refer to the sequence of character as . . . . . . . .
A. Stream of tokens
B. Stream of characters
C. Stream of bits
D. Stream of bytes
Select an option to see the answer and solution.
In VB the . . . . . . . . function converts a string to a number.
A. str()
B. ucase()
C. val ()
D. len()
Select an option to see the answer and solution.
We can determine number of elements in two-dimensional array by . . . . . . . .
A. Multiplying number of rows and number of columns
B. Adding number of rows and number of columns
C. Multiplying number of rows and number of rows
D. Adding number of columns and number of columns
Select an option to see the answer and solution.