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