• 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/46

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;

46 Cards in this Set

  • Front
  • Back
The ________________________ control allows you to capture input the user has
typed on the keyboard.
TextBox
__________________ is a commonly used prefix for TextBox control names.
txt
___________ _____________ means that one string is appended to another
string concatenation
The ______-__________________ character allows you to break a long statement
into two or more lines of code.
line-continuation
The __________-______________ character is actually two characters: a space followed by an underscore.
line-continuation
The control that has the ________________________ is the one that receives the
user’s keyboard input or mouse clicks.
focus
The order in which controls receive the focus is called the ________ _____________
tab order
You can modify the tab order by changing a control’s ________________________
property.
TabIndex
If you do not want a control to receive the focus when the user presses the [Tab] key,
set its ________________________ property to False
TabStop
An access key is a key that you press in combination with the ___________________
key to access a control such as a button quickly.
[Alt]
You define a button’s access key through its ________________________ property.
text
A(n) ________________________ is a storage location in the computer’s memory,
used for holding information while the program is running.
variable
A(n) _________ _______________ is a statement that causes Visual Basic to create a
variable in memory
variable declaration
A variable’s ________________________ determines the type of information the
variable can hold
declaration
A(n) ________________________ variable is declared inside a procedure
local
A(n) ___________ _____________ error is generated anytime a nonnumeric value
that cannot be automatically converted to a numeric value is assigned to a numeric
variable or property
type conversion
A(n) ________________________ is a specialized routine that performs a specific
operation and then returns a value.
function
The ________________________ function converts an expression to an integer
CInt
The ________________________ format string, when passed to the ToString
method, produces a number in Currency format.
Currency
A(n) ________________________ is information that is being passed to a function.
argument
When two operators share an operand, the operator with the highest
________________________ executes first.
precedence
A(n) ___________ _____________ is like a variable whose content is read-only; it
cannot be changed while the program is running.
named constant
A(n) __________ _____________ appears as a rectangular border with an optional title.
group box
A form’s ____________ ____________ procedure executes each time a form loads
into memory.
load event
A(n) ________________________ is a line of code that causes a running application
to pause execution and enter break mode.
breakpoint
A __________________ structure allows a program to execute some statements only
under certain circumstances.
Decision
A(n) ___________________ operator determines if a specific relationship exists
between two values.
relational
Boolean expressions can only be evaluated as ___________________ or
___________________.
True or False
A(n) ___________________ is a Boolean variable that signals when some condition
exists in the program.
flag
The __...____...____ statement will execute one group of statements if the
condition is true, and another group of statements if the condition is false.
If...Then...Else
The __...____...____ statement is like a chain of If...Then...Else statements. They perform their tests, one after the other, until one of them is found to be true.
If...Then...ElseIf
A ___________________ If statement is an If statement that appears inside another If statement
nested
___________________ operators connect two or more relational expressions into
one or reverse the logic of an expression
logical
The ___________________ method returns the uppercase equivalent of a string.
ToUpper
The ___________________ returns a lowercase version of a string
ToLower
The ___________________ function accepts a string as its argument and returns
True if the string contains a number, or False if the string’s contents cannot be recognized as a number
IsNumeric
The __________________ method returns the number of characters in a string
Length
The __________________ method returns a copy of a string without leading spaces
TrimStart
The __________________ method returns a copy of a string without trailing spaces.
TrimEnd
The __________________ method returns a copy of the string without leading or
trailing spaces.
Trim
The __________________ method extracts a specified number of characters from
within a specified position in a string.
Substring
The value ___________________ can be concatenated with a string to produce multiple line displays
ControlChars.CrLf—a
A(n) ______ ________ statement tests the value of an expression only once, and then
uses that value to determine which set of statements to branch to.
Select Case
______ ________ is the process of inspecting input values and determining whether
they are valid
Input validation
____ _____ controls usually appear in groups and allow the user to select one of
several possible options.
Radio Button
_______________ controls may appear alone or in groups and allow the user to
make yes/no or on/off selections.
CheckBox