1 |
Which operator takes two Boolean expression as operands and produces the result true if both of its operands are true ? |
|
2 |
Which symbol is used to represent the NOT operator ? |
|
3 |
Which symbol is used to represent the OR operator ? |
|
4 |
Which symbol is used to represent the AND operator ? |
&&
||
+
!
|
5 |
Which of the following are logical operators ? |
AND
OR
NOT
all of these
|
6 |
Which operators perform operation on Boolean expressions and produce a Boolean expressions as a result ? |
logical
assignment
arithmetic
relation
|
7 |
Which operator checks whether right and left operands are equal or not ? |
==
=
?
+-
|
8 |
Which operator assigns the result of expression on right side to the variable on left side ? |
==
=
*
( )
|
9 |
In C language which operator is used to check for equality of two expression ? |
==
=
?
+-
|
10 |
Which operators compare two values to determine the relationship between values ? |
assignment
arithmetic
logical
relation
|
11 |
Which operator performs division of left operand by the right operand and returns the remainder value after division ? |
+
%
*
.
|
12 |
Which operator is used to subtract the value on right side from the value on left side ? |
+
-
*
%
|