Chapter 4 Flashcards
1
Q
>
A
Greater than
2
Q
<
A
Smaller than
3
Q
> =
A
Greater than or equal to
4
Q
<=
A
Smaller than or equal to
5
Q
==
A
Equal to
6
Q
!=
A
Not equal to
7
Q
All of the relational operators are?
A
Binary
8
Q
Because relational operators are binary, they use how many operarands?
A
Two operands
9
Q
What is this expression called?
x > y
A
Relational expression
10
Q
Relational expressions are also known as?
A
Boolean expressions
11
Q
What is a Boolean expression?
A
A Boolean expression means their value can only be true or false.
12
Q
How does a computer store true in memory?
A
With the number 1.
13
Q
How does a computer store false in memory?
A
With the number 0.