Front | Back |
The type of error that would be flagged by the editor
?
|
syntax error
|
The line abc = "xyz" is an example of this type of statement
|
assignment
|
In this statement listbox.Items.add we expect n to be one of these
|
variable
|
The character that is used to being a comment
|
apostrophe
|
The property setting that controls what is displayed on a forms title bar
|
property
|
The keyword that declares a statement
|
dim
|
The process of locating a correction errors within a computer program
|
debugging
|
The value of x after the following statement: x = CStr(math.round(13/2)
|
6
|
VB is one example of this type of programming language
|
igher-level language
|
The property that controls whether or not an object will be seen
|
Visible
|
The three basic operations performed by most computer programs are
|
input, process, and output
|
The statement that would declare a new variable who's name is ABC and assign it the value of 39.99
|
DIM
|
The value of x after this statement has been executed
x =4+3*5 -
|
19
|
The value of x after the stament has been executed: x = "first exam".Length
|
10
|
The statement that will changefor textbox color in text box, txtbox1, to blue
|
Textbox1.forecolor= .color.blue
|