Comparison Operators Flashcards

1
Q

Operators that we are using to compare two values or
objects.

A

Comparison Operators

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

It return either TRUE or FALSE according to
the condition.

A

Comparison Operators

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

These operators compare the values on either sides of them and
decide the relation among them.

A

Comparison Operators

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

They are also called RELATIONAL OPERATORS.

A

Comparison Operators

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

If the values of two operands are
equal, then the condition becomes
TRUE. ==

A

Equal To

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

If values of two operands are not
equal, then condition becomes
TRUE. !=

A

Not Equal To

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

If the value of left operand is greater
than the value of the right operand,
then condition becomes TRUE. >

A

Greater Than

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

If the values of the left operand is
less than the value of right operand,
then condition becomes TRUE. <

A

Less Than

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

If the value of left operand is greater than or equal to the value of right operand, then condition becomes TRUE. >=

A

Greater Than or Equal To

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

If the value of left operand is less than
or equal to the value of right operand,
then condition becomes TRUE. <=

A

Less Than or Equal To

How well did you know this?
1
Not at all
2
3
4
5
Perfectly