Computer Exam – Flashcards

question
Directions given to a computer by a human being are called ____.
answer
programs
question
Instructions written in 0s and 1s are called ____ code.
answer
machine
question
____ are the operations that an object is capable of performing.
answer
Methods
question
____ refers to the fact that you can create one class from another class.
answer
Inheritance
question
A(n) ____ is an environment that contains all of the tools and features you need to create, run, and test your programs.
answer
IDE
question
A(n) ____ is what you see and interact with when using an application.
answer
user interface
question
A(n) ____ is a container that stores the projects and files for an entire application.
answer
solution
question
A ____ is the foundation for the user interface in a Windows-based application.
answer
form
question
The ____ window contains nine tabs, with each tab displaying a different pane in the window.
answer
Project Designer
question
A(n) ____ file is a file that contains program instructions, called code.
answer
source
question
A(n) ____ is a block of code that specifies (or defines) the attributes and behaviors of an object.
answer
class definition
question
Each namespace in Visual Studio 2005 contains the code that defines a group of related ____.
answer
classes
question
____ controls are used in an interface to identify other controls and also display program output.
answer
Label
question
In Windows applications, a ____ control is used to perform an immediate action when clicked.
answer
button
question
A predefined Visual Basic procedure that you can call (or invoke) when needed is called a(n) ____.
answer
method
question
The ____ list box of the Code Editor window lists the events to which the selected object is capable of responding.
answer
Method Name
question
The procedure footer for a sub procedure is ____.
answer
End Sub
question
You use the ____ method to instruct the computer to close the current form.
answer
Me.Close
question
The ____ form is the form that the computer automatically displays each time the application is started.
answer
startup
question
When you start a Visual Basic application, the computer automatically creates a file, called a(n) ____ file, that can be run outside of the Visual Studio 2005 IDE.
answer
executable
question
The assignment operator is ____.
answer
=
question
After completing the Task column of the TOE chart, you then assign each task to a(n) ____ in the user interface.
answer
object
question
You use a ____ to give the user an area in which to enter data.
answer
text box
question
The ____ property of a text box is used to specify the position of the text within the text box.
answer
TextAlign
question
The primary viewing and editing of your application's data take place in a ____ window.
answer
primary
question
In Visual Basic, you use a Windows ____ object to create primary windows.
answer
Form
question
You specify the border style of a dialog box using the form's ____ property.
answer
FormBorderStyle
question
When the FormBorderStyle property is set to ____, the user can drag the form's borders to change the form's size while the application is running.
answer
Sizable
question
Leaving a form's MinimizeBox property and MaximizeBox property set at the ____ setting allows the user to minimize and maximize the form using the Minimize and Maximize buttons on the form's title bar.
answer
True
question
If a form represents a splash screen, you typically set the form's FormBorderStyle property to ____.
answer
FixedSingle
question
Setting a form's ____ property to False removes the Control menu box, as well as the Minimize, Maximize, and Close buttons, from the title bar.
answer
ControlBox
question
Related controls can be grouped together using a ____ control.
answer
panel
question
The GroupBox, Panel, and TableLayoutPanel tools are located in the ____ section of the toolbox.
answer
Containers
question
An identifying label should be positioned either ____ of the text box it identifies.
answer
above or to the left
question
A text box's identifying label should end with a(n) ____.
answer
colon (:)
question
The Windows standard is to use ____ capitalization for identifying labels.
answer
sentence
question
You can use the ____ menu to align, and also size, the controls on a form.
answer
Format
question
You can use an object's ____ property to change the type, style, and size of the font used to display the text in the object.
answer
Font
question
Tahoma, Courier, and Microsoft Sans Serif are examples of font ____.
answer
types
question
Regular, bold, and italic are examples of font ____.
answer
styles
question
You assign an access key by including a(n) ____ in the control's caption or identifying label.
answer
ampersand (;)
question
When a control has the ____, it can accept user input.
answer
focus
question
____ are computer memory locations where programmers can temporarily store data while an application is running.
answer
Variables
question
Variables assigned the Integer, Long, or Short data type can store ____.
answer
integers
question
A(n) ____ is a number that is expressed as a multiple of some power of 10.
answer
floating-point number
question
A variable name must begin with a letter or a(n) ____.
answer
underscore ( _ )
question
A(n) ____ is a group of characters enclosed in quotation marks.
answer
string
question
In Visual Basic, a numeric literal constant that has a decimal place is automatically treated as a(n) ____ number.
answer
Double
question
Each data type in Visual Basic 2005 is a(n) ____.
answer
class
question
A(n) ____ is a specific portion of the class instructions, and its purpose is to perform a task for the class.
answer
method
question
Every numeric data type in Visual Basic has a ____ method that can be used to convert a string to that numeric data type.
answer
TryParse
question
The line continuation character is a(n) ____.
answer
underscore ( _ )
question
The ____ class contains methods that you can use to change a numeric value to a specified data type.
answer
Convert
question
When using a method of a class, you use a(n) ____ to separate the class name from the method name.
answer
period ( . )
question
____ numbers indicate the order in which the computer performs the operation in an expression.
answer
Precedence
question
You can use ____ to change the order in which the operators in an expression are evaluated.
answer
parentheses
question
After dividing two numbers, the ____ operator returns the remainder of the division.
answer
modulus arithmetic
question
A variable's ____ indicates where in the application's code the variable can be used.
answer
scope
question
When a value is converted from one data type to another data type that can store larger numbers, the value is said to be ____.
answer
promoted
question
When a value is converted from one data type to another data type that can store only smaller numbers, the value is said to be ____.
answer
demoted
question
Specifying the number of decimal places and the special characters to display in a number is called ____.
answer
formatting
question
A(n) ____ string is a set of quotation marks with nothing between them.
answer
empty
question
Another term for a selection structure is a ____ structure.
answer
decision
question
An If selection structure contains ____ set(s) of instructions, which are processed when the condition is true.
answer
one
question
An If/Else selection structure contains ____ set(s) of instructions.
answer
two
question
In an If or If/Else selection structure, the instructions following the condition are referred to as the ____ path.
answer
true
question
In the pseudocode of an If/Else selection structure, the instructions between the "else" and the "end if" are referred to as the ____ path.
answer
false
question
You do not always need to include the ____ clause in an If...Then...Else statement.
answer
Else
question
The set of statements contained in the true path is referred to as a(n) ____.
answer
statement block
question
Comparison operators are also referred to as ____ operators.
answer
relational
question
In Visual Basic, ____ is the greater than or equal to operator.
answer
;=
question
All expressions containing a comparison operator will result in an answer of ____.
answer
True or False
question
A variable that has block scope can be used ____.
answer
only within the statement block in which it is declared
question
You use the ____ method to convert a string to lowercase.
answer
ToLower
question
Logical operators are also referred to as ____ operators.
answer
Boolean
question
You can use the ____ method to determine whether a control's Text property contains data before attempting to parse it.
answer
String.IsNullOrEmpty
question
You can use the ____ method to display a message box that contains text, one or more buttons, and an icon.
answer
MessageBox.Show
question
A message box with an Information Message icon should contain ____.
answer
only an OK button
question
When either a selection structure's true path or its false path contains another selection structure, the inner selection structure is referred to as a(n) ____ selection structure.
answer
nested
question
The If/ElseIf/Else and Case forms of the selection structure are commonly referred to as ____ selection structures.
answer
extended
question
A repetition structure is also referred to as a(n) ____.
answer
loop
question
The instructions in a posttest loop always will be processed ____ or more times.
answer
one
question
You can use the ____ statement to code a loop whose instructions you want processed a precise number of times.
answer
For...Next
question
When you declare a variable in the For clause of the For...Next statement, the variable has ____ scope.
answer
block
question
The dialog box displayed by the InputBox function has ____ button(s).
answer
two
question
Updating a counter or accumulator is also called ____ a counter or accumulator.
answer
incrementing
question
Translates high-level instructions into machine code, line by line, as the program is running
answer
interpreter
question
Translates an entire program written in a high-level language into machine code before running the program
answer
compiler
question
A characteristic that describes an object
answer
attribute
question
A pattern or blueprint used to create an object
answer
class
question
An action of the user, such as clicking, double-clicking, and scrolling
answer
event
question
A block of code that performs a specific task
answer
sub procedure
question
A platform on which you create applications
answer
Microsoft .NET Framework 2.0
question
Anything that can be seen, touched, or used
answer
object
question
Responsible for managing the execution of the Intermediate Language (IL) instructions
answer
Common Language Runtime
question
Used to support and supplement a user's activities in the primary windows
answer
dialog box
question
Used to group related controls
answer
table layout panel control
question
Capitalize only the first letter in the first word and in any words that are customarily capitalized
answer
sentence capitalization
question
Capitalize the first letter in each word, except for articles, conjunctions, and prepositions that do not occur at either the beginning or the end of the caption
answer
book title capitalization
question
The general shape of the characters in the text
answer
font
question
Unit used to measure font sizes
answer
point
question
A light cross stroke that appears at the top or bottom of a character
answer
serif
question
Used to process code at one or more regular intervals
answer
Timer control
question
Stores all controls that do not appear in the user interface when an application is running
answer
component tray
question
A data type that stores an integer
answer
Long
question
A data type that stores logical values
answer
Boolean
question
A data type that stores a floating-point number
answer
Double
question
An error in the code
answer
bug
question
The universal coding scheme for characters
answer
Unicode
question
The name assigned to a variable
answer
identifier
question
An item of data whose value does not change while the application is running
answer
literal constant
question
A memory location inside the computer whose contents cannot be changed while the application is running
answer
named constant
question
Uses short phrases to describe the steps a procedure needs to take to accomplish its goal
answer
pseudocode
question
Specifies the decision being made by the program in a selection structure
answer
condition
question
The concatenation operator
answer
&
question
The less than operator
answer
<
question
A logical operator; one and only one condition can be true for the compound condition to be true
answer
Xor
question
The logical operator that reverses the value of the condition
answer
Not
question
A logical operator; only one of the conditions must be true for the compound condition to be true
answer
Or
question
Contains only one set of instructions, which are processed when the condition is true
answer
If selection structure
question
Contains two sets of instructions: one set is processed when the condition is true and the other set is processed when the condition is false
answer
If/Else selection structure
question
A multiple-path selection structure
answer
If/ElseIf/Else selection structure
question
The evaluation occurs before the instructions within the loop are processed
answer
pretest loop
question
The evaluation occurs after the instructions within the loop are processed
answer
posttest loop
question
A numeric variable used for counting something
answer
counter
question
A numeric variable used for adding together something
answer
accumulator
question
A predefined procedure that performs a specific task and then returns a value after completing the task
answer
function
question
Used to prepare or set up a loop
answer
priming read
1 of

Unlock all answers in this set

Unlock answers
question
Directions given to a computer by a human being are called ____.
answer
programs
question
Instructions written in 0s and 1s are called ____ code.
answer
machine
question
____ are the operations that an object is capable of performing.
answer
Methods
question
____ refers to the fact that you can create one class from another class.
answer
Inheritance
question
A(n) ____ is an environment that contains all of the tools and features you need to create, run, and test your programs.
answer
IDE
question
A(n) ____ is what you see and interact with when using an application.
answer
user interface
question
A(n) ____ is a container that stores the projects and files for an entire application.
answer
solution
question
A ____ is the foundation for the user interface in a Windows-based application.
answer
form
question
The ____ window contains nine tabs, with each tab displaying a different pane in the window.
answer
Project Designer
question
A(n) ____ file is a file that contains program instructions, called code.
answer
source
question
A(n) ____ is a block of code that specifies (or defines) the attributes and behaviors of an object.
answer
class definition
question
Each namespace in Visual Studio 2005 contains the code that defines a group of related ____.
answer
classes
question
____ controls are used in an interface to identify other controls and also display program output.
answer
Label
question
In Windows applications, a ____ control is used to perform an immediate action when clicked.
answer
button
question
A predefined Visual Basic procedure that you can call (or invoke) when needed is called a(n) ____.
answer
method
question
The ____ list box of the Code Editor window lists the events to which the selected object is capable of responding.
answer
Method Name
question
The procedure footer for a sub procedure is ____.
answer
End Sub
question
You use the ____ method to instruct the computer to close the current form.
answer
Me.Close
question
The ____ form is the form that the computer automatically displays each time the application is started.
answer
startup
question
When you start a Visual Basic application, the computer automatically creates a file, called a(n) ____ file, that can be run outside of the Visual Studio 2005 IDE.
answer
executable
question
The assignment operator is ____.
answer
=
question
After completing the Task column of the TOE chart, you then assign each task to a(n) ____ in the user interface.
answer
object
question
You use a ____ to give the user an area in which to enter data.
answer
text box
question
The ____ property of a text box is used to specify the position of the text within the text box.
answer
TextAlign
question
The primary viewing and editing of your application's data take place in a ____ window.
answer
primary
question
In Visual Basic, you use a Windows ____ object to create primary windows.
answer
Form
question
You specify the border style of a dialog box using the form's ____ property.
answer
FormBorderStyle
question
When the FormBorderStyle property is set to ____, the user can drag the form's borders to change the form's size while the application is running.
answer
Sizable
question
Leaving a form's MinimizeBox property and MaximizeBox property set at the ____ setting allows the user to minimize and maximize the form using the Minimize and Maximize buttons on the form's title bar.
answer
True
question
If a form represents a splash screen, you typically set the form's FormBorderStyle property to ____.
answer
FixedSingle
question
Setting a form's ____ property to False removes the Control menu box, as well as the Minimize, Maximize, and Close buttons, from the title bar.
answer
ControlBox
question
Related controls can be grouped together using a ____ control.
answer
panel
question
The GroupBox, Panel, and TableLayoutPanel tools are located in the ____ section of the toolbox.
answer
Containers
question
An identifying label should be positioned either ____ of the text box it identifies.
answer
above or to the left
question
A text box's identifying label should end with a(n) ____.
answer
colon (:)
question
The Windows standard is to use ____ capitalization for identifying labels.
answer
sentence
question
You can use the ____ menu to align, and also size, the controls on a form.
answer
Format
question
You can use an object's ____ property to change the type, style, and size of the font used to display the text in the object.
answer
Font
question
Tahoma, Courier, and Microsoft Sans Serif are examples of font ____.
answer
types
question
Regular, bold, and italic are examples of font ____.
answer
styles
question
You assign an access key by including a(n) ____ in the control's caption or identifying label.
answer
ampersand (;)
question
When a control has the ____, it can accept user input.
answer
focus
question
____ are computer memory locations where programmers can temporarily store data while an application is running.
answer
Variables
question
Variables assigned the Integer, Long, or Short data type can store ____.
answer
integers
question
A(n) ____ is a number that is expressed as a multiple of some power of 10.
answer
floating-point number
question
A variable name must begin with a letter or a(n) ____.
answer
underscore ( _ )
question
A(n) ____ is a group of characters enclosed in quotation marks.
answer
string
question
In Visual Basic, a numeric literal constant that has a decimal place is automatically treated as a(n) ____ number.
answer
Double
question
Each data type in Visual Basic 2005 is a(n) ____.
answer
class
question
A(n) ____ is a specific portion of the class instructions, and its purpose is to perform a task for the class.
answer
method
question
Every numeric data type in Visual Basic has a ____ method that can be used to convert a string to that numeric data type.
answer
TryParse
question
The line continuation character is a(n) ____.
answer
underscore ( _ )
question
The ____ class contains methods that you can use to change a numeric value to a specified data type.
answer
Convert
question
When using a method of a class, you use a(n) ____ to separate the class name from the method name.
answer
period ( . )
question
____ numbers indicate the order in which the computer performs the operation in an expression.
answer
Precedence
question
You can use ____ to change the order in which the operators in an expression are evaluated.
answer
parentheses
question
After dividing two numbers, the ____ operator returns the remainder of the division.
answer
modulus arithmetic
question
A variable's ____ indicates where in the application's code the variable can be used.
answer
scope
question
When a value is converted from one data type to another data type that can store larger numbers, the value is said to be ____.
answer
promoted
question
When a value is converted from one data type to another data type that can store only smaller numbers, the value is said to be ____.
answer
demoted
question
Specifying the number of decimal places and the special characters to display in a number is called ____.
answer
formatting
question
A(n) ____ string is a set of quotation marks with nothing between them.
answer
empty
question
Another term for a selection structure is a ____ structure.
answer
decision
question
An If selection structure contains ____ set(s) of instructions, which are processed when the condition is true.
answer
one
question
An If/Else selection structure contains ____ set(s) of instructions.
answer
two
question
In an If or If/Else selection structure, the instructions following the condition are referred to as the ____ path.
answer
true
question
In the pseudocode of an If/Else selection structure, the instructions between the "else" and the "end if" are referred to as the ____ path.
answer
false
question
You do not always need to include the ____ clause in an If...Then...Else statement.
answer
Else
question
The set of statements contained in the true path is referred to as a(n) ____.
answer
statement block
question
Comparison operators are also referred to as ____ operators.
answer
relational
question
In Visual Basic, ____ is the greater than or equal to operator.
answer
;=
question
All expressions containing a comparison operator will result in an answer of ____.
answer
True or False
question
A variable that has block scope can be used ____.
answer
only within the statement block in which it is declared
question
You use the ____ method to convert a string to lowercase.
answer
ToLower
question
Logical operators are also referred to as ____ operators.
answer
Boolean
question
You can use the ____ method to determine whether a control's Text property contains data before attempting to parse it.
answer
String.IsNullOrEmpty
question
You can use the ____ method to display a message box that contains text, one or more buttons, and an icon.
answer
MessageBox.Show
question
A message box with an Information Message icon should contain ____.
answer
only an OK button
question
When either a selection structure's true path or its false path contains another selection structure, the inner selection structure is referred to as a(n) ____ selection structure.
answer
nested
question
The If/ElseIf/Else and Case forms of the selection structure are commonly referred to as ____ selection structures.
answer
extended
question
A repetition structure is also referred to as a(n) ____.
answer
loop
question
The instructions in a posttest loop always will be processed ____ or more times.
answer
one
question
You can use the ____ statement to code a loop whose instructions you want processed a precise number of times.
answer
For...Next
question
When you declare a variable in the For clause of the For...Next statement, the variable has ____ scope.
answer
block
question
The dialog box displayed by the InputBox function has ____ button(s).
answer
two
question
Updating a counter or accumulator is also called ____ a counter or accumulator.
answer
incrementing
question
Translates high-level instructions into machine code, line by line, as the program is running
answer
interpreter
question
Translates an entire program written in a high-level language into machine code before running the program
answer
compiler
question
A characteristic that describes an object
answer
attribute
question
A pattern or blueprint used to create an object
answer
class
question
An action of the user, such as clicking, double-clicking, and scrolling
answer
event
question
A block of code that performs a specific task
answer
sub procedure
question
A platform on which you create applications
answer
Microsoft .NET Framework 2.0
question
Anything that can be seen, touched, or used
answer
object
question
Responsible for managing the execution of the Intermediate Language (IL) instructions
answer
Common Language Runtime
question
Used to support and supplement a user's activities in the primary windows
answer
dialog box
question
Used to group related controls
answer
table layout panel control
question
Capitalize only the first letter in the first word and in any words that are customarily capitalized
answer
sentence capitalization
question
Capitalize the first letter in each word, except for articles, conjunctions, and prepositions that do not occur at either the beginning or the end of the caption
answer
book title capitalization
question
The general shape of the characters in the text
answer
font
question
Unit used to measure font sizes
answer
point
question
A light cross stroke that appears at the top or bottom of a character
answer
serif
question
Used to process code at one or more regular intervals
answer
Timer control
question
Stores all controls that do not appear in the user interface when an application is running
answer
component tray
question
A data type that stores an integer
answer
Long
question
A data type that stores logical values
answer
Boolean
question
A data type that stores a floating-point number
answer
Double
question
An error in the code
answer
bug
question
The universal coding scheme for characters
answer
Unicode
question
The name assigned to a variable
answer
identifier
question
An item of data whose value does not change while the application is running
answer
literal constant
question
A memory location inside the computer whose contents cannot be changed while the application is running
answer
named constant
question
Uses short phrases to describe the steps a procedure needs to take to accomplish its goal
answer
pseudocode
question
Specifies the decision being made by the program in a selection structure
answer
condition
question
The concatenation operator
answer
&
question
The less than operator
answer
<
question
A logical operator; one and only one condition can be true for the compound condition to be true
answer
Xor
question
The logical operator that reverses the value of the condition
answer
Not
question
A logical operator; only one of the conditions must be true for the compound condition to be true
answer
Or
question
Contains only one set of instructions, which are processed when the condition is true
answer
If selection structure
question
Contains two sets of instructions: one set is processed when the condition is true and the other set is processed when the condition is false
answer
If/Else selection structure
question
A multiple-path selection structure
answer
If/ElseIf/Else selection structure
question
The evaluation occurs before the instructions within the loop are processed
answer
pretest loop
question
The evaluation occurs after the instructions within the loop are processed
answer
posttest loop
question
A numeric variable used for counting something
answer
counter
question
A numeric variable used for adding together something
answer
accumulator
question
A predefined procedure that performs a specific task and then returns a value after completing the task
answer
function
question
Used to prepare or set up a loop
answer
priming read
Get an explanation on any task
Get unstuck with the help of our AI assistant in seconds
New