• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/173

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

173 Cards in this Set

  • Front
  • Back
The job of the _____ is to fetch instructions, carry out the operations commanded by the instructions, and produce some outcome or resultant information.
Central Processing Unit (CPU)
A (n) _____ _____ is an example of a secondary storage device.
Disk Drive
The two general categories of software are ______ and _____ .
Operating System (OS) / Application
A program is a set of ______.
instructions
Since computers can not be programmed in a natural language, algorithms must be written in a(n) _______ language.
machine
_______ is the only language computers can process directly, without any conversion required.
machine
Words that have special meaning in a programming language are called ______/_____ _____.
keywords/reserved words
A(n) _____ is a name that represents a storage location in memory.
variable
______ are characters or symbols that perform operations on one or more operands.
operators
A(n) _____ is part of an application's code but is ignored by the compiler. It is intended for documentation purposes only.
Comments (Remarks)
The rules that must be followed when writing a program are called ______.
Syntax
______ is information a program gathers from the outside world.
input
______ is information a program sends to the outside world.
output
A(n) ______ is a set of well defined steps for performing a task or solving a problem.
procedures
A(n) ______ is a diagram that graphically illustrates the flow of a program.
flowchart
_____ is human-readable code that looks similar to programming language code.
pseudocode
A(n) _____ is a piece of data that determines some characteristic of a control.
property
If you do not see the Solution Explorer or Properties windows in Visual Studio, you may use the ______ menu to bring them up.
view
You click the pushpin icon in a window's title bar to turn the _____ ______ feature on or off.
auto hide
You use the _____ to place Buttons, Labels, TextBoxes, and other controls on an application's forms.
ToolBox
The _____ ______ window allows you to navigate among the files in your project.
solution explorer
The _____ window allows you to examine and change a control's properties.
properties
When windows are _____, it means they are attached to one of edges of the Visual Studio main window.
docked
To dock a floating window, right-click its title bar and then select _____.
float
To reset the Virtual Studio window layout, you select Reset Window Layout from the _____ menu.
Window
All commands executed by the _____ may also be executed from a menu.
toolbar
The _____ window shows your application's form. This is where you design your application's user interface by placing controls on the form that appears when your application executes.
designer
When you want to place a Button, Label, TextBox, or other control on an application's form, you select it in the ______ ______, and drag it onto the form in the Designer window.
Common Controls
You can access the full documentation for Visual Studio by clicking ______ on the menu bar, and then selecting View Help.
Help
A(n) _____ is a small box that is displayed when you hold the mouse cursor over a button on the toolbar or in the Toolbox for a few seconds.
ToolTip
The _____ property determines how a Label control’s text is aligned.
TextAlign
A PictureBox control’s _____ property lists the name of the file containing the graphic image.
Image
A PictureBox control’s _____ property determines how the graphic image will be positioned and scaled to fit the control’s bounding box.
SizeMode
When set to _____, the TextAlign property causes text to appear in the bottom right area of a Label control.
BottomRight
The contents of a form’s Text property is displayed on the form’s _____.
Properties
Anytime you select an existing control _____ _____ appear, which you use to resize the control.
bounding box
A control’s _____ is a transparent rectangular area that defines the control’s size.
bounding box
A Label control’s _____ property establishes the font, style, and size of the label’s displayed text.
Font
To delete a control in the Designer window, select it and press the _____ key.
Delete
The _____ control is used to display graphic images.
PictureBox
The SizeMode property of a PictureBox control is set to _____ by default.
Normal
When the _____ button is selected on the Solution Explorer window, it opens the Codewindow.
<>
Clicking the _____ button in the Properties window causes related properties to be listed in groups.
Categorized
Visible is a _____ property, which means it can only hold one of two values: True or False.
Boolean
An apostrophe (') in code marks the beginning of a _____.
comment
The equal sign (=) is known as the ______ operator. It copies the value on its right into the item on its left.
assignment
In an assignment statement, the name of the item receiving the value must be on the ______ side of the = operator.
left
The _____ control docks at the bottom of a form and provides
a way to display status messages.
StatusStrip
The _____ statement causes the form to close.
Me.Close()
The _____ property establishes the background color for a Label control’s text.
BackColor
The ______ property establishes the color of the type for a Label control’s text.
ForeColor
The _____ property allows you to prevent the user from resizing, minimizing, or maximizing a form, or closing a form using its Closebutton.
FormBorderStyle
When you ______ the controls on a form, they cannot be accidentally moved at design time.
lock
You display text in a form’s title bar by setting the value of the form’s _____ property.
Text
You commonly display words and sentences on a form by setting the value of a Label control’s _____ property.
Text
The _____ property causes the Label control to resize automatically to accommodate the amount of text in the Text property.
AutoSize
_____ errors are errors that are generated while an application is running.
Runtime
a set of well-defined steps for performing a
task or solving a problem
algorithm
programs that make the computer
useful to the user by solving specific problems or
performing general operations
application software
the data contained in an object; the
characteristics of an object that will be implemented as
properties
attributes
when this feature is turned on, the window
is displayed only as a tab along one of the edges of the
Visual Studio window; click the pushpin icon to turn
it on or off
Auto Hide
a number that is a sequence of 1s and 0s
binary number
a rectangular button-shaped control that
performs an action when clicked with the mouse
Button
the part of the computer
that fetches instructions, carries out operations
commanded by the instructions, and produces some
outcome
central processing unit (CPU)
a box that is checked or unchecked when
clicked with the mouse
CheckBox
the statements that are written in a program;
commonly called source code, or simply code
code
a control that is the combination of a
ListBox and a TextBox
ComboBox
notes of explanation that document lines or
sections in a method; also known as remarks
comments
special software that converts the program
into machine language
compiler
a specific type of object that usually appears in
a program’s graphical user interface
control
contains the application’s forms;
where one designs the application’s user interface by
creating forms and placing controls on them
Designer window
stores information by magnetically encoding
it onto a circular disk
disk drive
describes windows that are attached to each other
or to one of the edges of the Visual Studio window
docked window
a type of program that responds to events
or actions that occur while the program is running
event-driven
a type of method that responds to events,
such as mouse clicks and key presses at the keyboard
event handler
see event handler
event procedure
when windows, such as Project Explorer,
Properties, or Form Layout,are not docked (attached)
floating window
a diagram that graphically depicts the flow of
a method
flowchart
a window, onto which other controls may be
placed
Form
the graphical interface
used by modern operating systems
graphical user interface (GUI)
a rectangular border that functions as a
container for other controls
GroupBox
a computer’s physical components
hardware
a horizontal slider bar that, when moved
with the mouse, increases or decreases a value
HScrollBar
data the computer collects from the outside
world
input
a device that collects information and
sends it to the computer
input device
an
application that provides the necessary tools for
creating, testing, and debugging software
integrated development
environment (IDE)
programming language words that have a
special meaning; keywords may only be used for their
intended purpose
keywords
text that cannot be changed or entered by the
user; created with a Label control
Label
a control that appears as a box containing a list
of items
ListBox
instructions that are
stored in memory as a series of 1s and 0s and can only
be processed by the CPU
machine language instructions
also known as random-access memory,
or RAM; where the computer stores information while
programs are running
main memory
procedures or functions that are members of a
class; perform some operation on the data stored in
the class
methods
provides complete documentation for Visual Basic, as
well as other programming languages included in
Visual Studio
Microsoft Developer Network
(MSDN) Library
a property that holds the control’s
name; controls are accessed and manipulated in code
by their names
Name property
a programming element that contains data and
actions
object
a programming
technique centered on creating objects; a way of
designing and coding applications that has led to using
interchangeable software components
object-oriented programming
(OOP)
a set of programs that manages
the computer’s hardware devices and controls their
processes
operating system (OS)
perform operations on one or more
operands
operators
data a computer sends to the outside world
output
a device that formats and presents output
information
output device
displays a graphic image
PictureBox
a set of programming language statements
that are executed by the computer
procedure
a sequence of instructions stored in the
computer’s memory; the instructions enable the
computer to solve a problem or perform a task
program
languages that use words
instead of numbers to program the computer
programming languages
a group of files that make up a Visual Basic
application
project
in Visual Basic, an object’s attributes
properties
shows and allows you to change
most of the currently selected object’s properties, and
those properties’ values
Properties window
statements that are a cross between human
language and a programming language
pseudocode
a round button that is either selected or
deselected when clicked with the mouse
RadioButton
see main memory
random-access memory (RAM)
also known as comments; notes of explanation
that document lines or sections in a method
remarks
see keywords
reserved words
a mistake, such as an incorrect
mathematical formula, that does not prevent the
application from executing; seeruntime errors
runtime error
a device, such as a disk drive, that
can hold information for long periods of time
secondary storage
programs that run on a computer
software
allows quick navigation
among the files in the application
Solution Explorerwindow
the statements that are written in a
program
source code
situated below the menu bar; contains
buttons that execute frequently used commands
standard toolbar
an instruction that you write in a program;
can consist of keywords, operators, punctuation,
and other allowable programming elements,
arranged in the proper sequence to perform an
operation
statement
`rules that must be followed when constructing a
method; dictate how keywords, operators, and
programmer-defined names may be used
syntax
in Visual Basic, stores the value that
becomes the text in a control
Text property
a rectangular area on a form in which the user
can enter text, or the program can display text
TextBox
contains buttons, or tools, for Visual
Basic controls
Toolbox window
a small box that pops up when you hover
the mouse over a button on the toolbar in the
Toolbox; it contains a short description of the
button’s purpose
ToolTip
the person who uses a program
user
the part of the program that users interact
with
user interface
a storage location in the computer’s memory,
used for holding information while the program is
running
variable
a vertical slider bar that, when moved with
the mouse, increases or decreases a value
VscrollBar
a rectangular area that contains other visual
elements such as text, buttons that can be clicked with
the mouse, boxes that accept keyboard input, and so
forth
window
a button on the Propertieswindow
that causes properties to be displayed alphabetically
Alphabetical button
the image’s width to height ratio
aspect ratio
the equal sign (=); it copies the
value on its right into the item on its left in an
assignment statement
assignment operator
a programming statement that
uses the assignment operator to copy a value from one
object to another
assignment statement
a Label control property that, when
set to True, causes the label’s size to display all the text
in the Text property
AutoSize property
establishes the background color
for text
BackColor property
a value that can be either True or
False
Boolean property
a Label control property that
determines the type of border, if any, that will appear
around the control
BorderStyle property
a transparent rectangular area that
defines a control’s size on a form
bounding box
the mode in which an application has been
suspended for debugging purposes
break mode
a button on the Propertieswindow
that causes related properties to be displayed in groups
Categorized button
defines a class and member variables,
properties, events, and methods
class declaration
code that is automatically inserted into
an event handler, consisting of the first and last lines
of the procedure; you must add the code that appears
between these two lines
code template
a text-editing window in which you write
code
Code window
syntax errors, such as misspelled
keywords and incorrect use of operators or
punctuation; statements containing compile errors are
underlined with a jagged blue line
compile errors
a help screen that is displayed
when the F1 key is pressed (for the item that is
currently selected)
context-sensitive help
affects whether or not control
buttons appear at the upper-right corner of a form's
title bar
ControlBox property
the mode in which you design and build
an application
design mode
see Design mode
design time
a small window that displays a message to
the user; seemessage box
dialog box
indicates the size and style of a text
font
Font property
establishes the foreground color for
text
ForeColor property
a property that configures a
form’s border; allows or prevents resizing, minimizing,
or maximizing a window
FormBorderStyle property
specifies the image file that is to be
displayed by the control
Image property
a feature of Visual Basic that provides help
and some automatic code completion while you are
developing an application
IntelliSense
a dialog box that displays a message to the
user
message box
statement that causes a method to execute
method call
when set to True, causes a
Maximize button to appear on the right side of a
form's title bar
MaximizeBox property
when set to True, causes a
Minimize button to appear on the right side of a
form's title bar
MinimizeBox property
a drop-down list of the objects in the project
that appears in the Propertieswindow
object box
a control that can be used to display
a graphic image
PictureBox control
a file ending with the .vbproj extension that
contains data describing the Visual Basic project
project file
the runtime mode in which you run and test
an application
run mode
see run mode
runtime
mistakes that do not prevent an
application from executing, but cause it to produce
incorrect results
runtime errors
a button on the Dynamic Helpwindow
that allows you to search for help topics using
keywords
Search button
a PictureBox property that
determines how the control will position and scale its
graphic image
SizeMode property
small boxes that appear around a control
when it is selected during design mode; used to enlarge
or shrink the control
sizing handles
a container for holding Visual Basic projects
solution
a file that ends with the .sln extension and
contains data describing a solution
solution file
displays a toolstrip with buttons and
text, usually at the bottom of a form
StatusStrip control
a group of characters inside quotation
marks
string literal
a property that aligns text within a
control
TextAlign property
Boolean property that causes a
control to be visible on the form when set to True, or
hidden when set to False
Visible property