A . . . . . . . . is an item of data whose values do not change while the application is running.
A. Literal constant
B. Variable
C. Auto variable
D. Extern variable
Select an option to see the answer and solution.
Which of the following statements prevents a form from being closed?
A. e.Cancel = False
B. e.Cancel = True
C. e.Close = False
D. sender.Close = False
Select an option to see the answer and solution.
A . . . . . . . . is an example that accepts user input and is determined by a label control.
A. Text box
B. Property box
C. Tool box
D. Button
Select an option to see the answer and solution.
A variable's . . . . . . . . indicates how long the variable stays in the computer's internal memory.
A. Scope
B. Lifetime
C. Place
D. Position
Select an option to see the answer and solution.
When you declare a variable in the form's declaration section, it is called as . . . . . . . .
A. Class-level variable
B. Object variable
C. Procedure-level variable
D. Auto variable
Select an option to see the answer and solution.
. . . . . . . . method is used for accessing any number of characters in a String.
A. Substring
B. Contains
C. IndexOf
D. CharAt
Select an option to see the answer and solution.
How many default buttons can a form have?
Select an option to see the answer and solution.
. . . . . . . . is a variable that remains in memory, and retains its value even after the procedure declaring it ends.
A. Procedure-level variable
B. Class-level variable
C. Static variable
D. Dynamic variable
Select an option to see the answer and solution.
To determine whether a variable is being passed to a procedure by value or by reference, you will need to examine . . . . . . . .
A. the Call statement
B. the procedure header
C. the statements entered in the procedure
D. the procedure footer
Select an option to see the answer and solution.
The items in a list box are sorted based on the . . . . . . . . characters in each item.
A. Leftmost
B. Rightmost
C. Previous
D. Next
Select an option to see the answer and solution.
When a selection structure's true part or false part contains another selection structure, the inner selection structured is referred to as . . . . . . . .
A. Implicit selection structure
B. Inner selection structure
C. Outer selection structure
D. Nested selection structure
Select an option to see the answer and solution.
Pressing the enter key when the button is on focus produces . . . . . . . .
A. Button's properties
B. Button's click event
C. Dialog box to change button name
D. Removes the button
Select an option to see the answer and solution.
A . . . . . . . . is a predefined procedure that performs a specific task.
A. Flowchart
B. Pseudocode
C. Function
D. Errors
Select an option to see the answer and solution.
. . . . . . . . menu is open by right button of the mouse .
A. short cut menu
B. popup menu
C. sub menu
D. none of these
Select an option to see the answer and solution.
Stretch property is used set. . . . . . . .of images .
A. width and height
B. border
C. color
D. load picture
Select an option to see the answer and solution.
The function of . . . . . . . . is to give a pop-up message to the user.
A. msgbox()
B. inputbox()
C. print
D. nested
Select an option to see the answer and solution.
A function's header includes the . . . . . . . . data type.
Select an option to see the answer and solution.
The strStates and strCapitals arrays are parallel arrays. If Illinois is stored in the second element in the strStates array, where is its capital (Springfield) stored?
A. strCapitals(1)
B. strCapitals(2)
C. strCapitals(0)
D. strCapitals(3)
Select an option to see the answer and solution.
Following are not the arithmetic operator .
Select an option to see the answer and solution.
Set the identifying labels tab index property that is . . . . . . . . than text box's tab index property.
A. One number lesser
B. One number more
C. Same as text box's tab index
D. Does not depend on text box's tab index
Select an option to see the answer and solution.