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

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;

21 Cards in this Set

  • Front
  • Back
_(underscore)
The line-continuation character.
=(equal to)
Relational operator used to determine if one value is equal to another.
<(less than)
Relational operator used to determine if one value is less than another.
<=(less than or equal to)
Relational operator used to determine if one value is less than or equal to another.
>(greater than)
Relational operator used to determine if one value is greater than another.
>(greater than or equal to)
Relational operator used to determine if one value is greater than or equal to another.
<>(not equal to)
Relational operator used to determine if one value is not equal to another.
AND
Logical operator used to form a Boolean expression. An expression formed using And is True only when the expressions it joins are all True.
CheckBox Control
Used to add a CheckBox control class object to a form. Properties include Name, Text, and Checked. Events include Click.
If... Then
Statement that executes code when a condition is True.
If...Then...Else
Statement that executes code in the Else clause when a condition is False
If...Then...ElseIf
Statement that is used to decide among three or more actions.
Int()
A function that returns the integer portion of a number without rounding.
MessageBox class
Used to display a predefined dialog box that displays a message and an OK button. Methods include Show().
Not
Logical operator used to form a Boolean expression. An expression formed using Not is True only when the expression it is used with is False.
Or
Logical operator used to form a Boolean expression. An expression formed using Or is True when any of the expressions it joins are True.
Randomize()
Statement used to initialize the Rnd() function so that different random numbers are generated from run to run.
Rnd()
A function used to generate a random number greater than or equal to 0 and less than 1.
Select...Case
Statement that executes code depending on the result of an expression.
Select...Case Is
Statement that executes code depending on a comparison ofa range of values to the result of an expression.
Static
Statement used to declare a static variable.