1 |
Which operator returns remainder ? |
modulusoperators
binaryoperators
ternaryoperators
all of these
|
2 |
All of arithmetic operators, relational operators and logical operators && and || are: |
unary operators
binaryoperators
ternaryoperators
all of these
|
3 |
Which operators require two operands to perform the operations ? |
unary
binary
ternary
all of these
|
4 |
Which is unary operator ? |
|
5 |
Which operators are applied over one operand only ? |
unary
binary
ternary
all of these
|
6 |
Which operator makes it true, if it is false and false if it true ? |
|
7 |
Which operator negates or reverses the value of Boolean expression ? |
|
8 |
Which operator accepts Boolean expression and returns true if at least one of the operands is true ? |
|
9 |
Which operator takes two Boolean expression as operands and produces the result true if both of its operands are true ? |
|
10 |
Which symbol is used to represent the NOT operator ? |
|
11 |
Which symbol is used to represent the OR operator ? |
|
12 |
Which symbol is used to represent the AND operator ? |
&&
||
+
!
|