| 91. |
Choose the correct statement about Right Shift Operator >>
|
||||||||
|
Answer:
Option (d) |
| 92. |
Which is bit toggling operator below?
|
||||||||
|
Answer:
Option (d) |
| 93. |
Left Shift operation is equivalent to____
|
||||||||
|
Answer:
Option (b) |
| 94. |
Right Shift operation >> is equivalent to___
|
||||||||
|
Answer:
Option (b) |
| 95. |
What will be the value of variable c?
int c = 2 ^ 3;
|
||||||||
|
Answer:
Option (a) |
| 96. |
What will be the value of variable a?
int a = 6; a = ~a;
|
||||||||
|
Answer:
Option (c) |
| 97. |
An arithmetic expression without parenthesis will be evaluated from left to right
|
||||
|
Answer:
Option (a) |
| 98. |
In C programming, the statement a=a+1 and a+=1 will produce same result
|
||||
|
Answer:
Option (a) |
| 99. |
Within an expression, __________ precedence operators will be evaluated first
|
||||||||
|
Answer:
Option (b) |
| 100. |
What will the value of variable a?
int a = 4 + 4/2*5 + 20;
|
||||||||
|
Answer:
Option (c) |