Sample Quiz Flashcards
Visual Basic keywords are ___________
reserve words
Property __________ maintains all the values in a ListBox.
Items
A __________ is a control in which the user can enter data from a keyboard.
TextBox
Entering a value in a TextBox causes a ____________ event
TextChanged
When a value is read from memory, that value is _____________
Not overwritten
The three types of control structures are sequence, selection, and __________.
repetition
The ___________ operator returns False if the left operand is larger than the right operand
<=
Item’s method __________ deletes all the values in a ListBox
clear
The Form’s ________ property specifies the text that is displayed in the Form’s title bar
Text
The ______ control allos users to add and view items in a list
ListBox
Programs that translate high-level programs into machine language are called
compiler
The symbol ________ is not a Visual Basic operator.
%
In an activity diagram, a rectangle with curved sides represents ___________
an action
A Button’s text should use _________ capitalization
book-title
The expression to the right of an assignment operator is evaluated ________________ the assignment occurs
before
A ________ occurs when an executed statement does not directly follow the previously executed statement in the written application
transfer of control
The body of a Do While….Loop statement executes _____________
while its condition is true
Item’s method __________ adds an item to a listBox
Add
If number is initialized with the value 15, What value will number contain after the expression number += 7 executes?
22
When a value is placed into a memory location, the value _________ the previous value in that location
replaces