True or False
Definitions
Coding
Symbolism
100

Operands are inputs of the operation.

True

100

An event handler is

A procedure that is used to deal with events.

100

An operator is a symbol that tells the computer:

What task to perform 

100

A = 250; B = 325. Which of the following statements is true?

A <=B

200

A variable can be called or referenced before it has been defined.

False

200

What is the first step in assigning a variable value?

Giving it a name

200

How is the AND logical operator used to evaluate code?

Both operands in this equation must match the code to return a value of true.

200

If A = 5 and B = 10, what is A * B equal to?

50

300

The only way to assign a value to a variable is by the programmer.

False

300

Which of the following can be stored in variables?

Numbers and characters

300

How is the NOT logical operator used to evaluate code?

It makes an operand the reverse of its actual value.

300

What symbol is used when assigning value to a variable?

=

400

Variables are used to store information that will be referenced and manipulated in a computer program.

True

400

How are logical operators used?

To make decisions

400

How is the OR logical operator used to evaluate code?

One of the operands in this equation must match the code to return a value of true.


400

Which of the following is NOT a logical operator?

If (?)
500

Boolean values are:

True or False 

500

Which of the following are types of operators?

Logical Operators
Relational Operators
Arithmetic Operators

ALL OF THE ABOVE

500

An event is


an action that occurs as a result of a user's action or another source.

500

How are relational operators used?

To compare two operands