| 21. |
Choose the correct statement about left shift Operator <<
|
||||||||
|
Answer:
Option (d) |
| 22. |
Choose the correct statement about Right Shift Operator >>
|
||||||||
|
Answer:
Option (d) |
| 23. |
Which is bit toggling operator below?
|
||||||||
|
Answer:
Option (d) |
| 24. |
Left Shift operation is equivalent to __________
|
||||||||
|
Answer:
Option (b) |
| 25. |
Which of the following is a symbol for logical AND operator?
|
||||||||
|
Answer:
Option (c) |
| 26. |
Right Shift operation >> is equivalent to _________
|
||||||||
|
Answer:
Option (b) |
| 27. |
What will be the value of variable c? int c = 2 ^ 3;
|
||||||||
|
Answer:
Option (a) |
| 28. |
Which of the following is ternary operator?
|
||||||||
|
Answer:
Option (c) |
| 29. |
What will be the output of following program #include<stdio.h> void main() { int x,y=10; x = y * NULL; printf("%d",x); }
|
||||||||
|
Answer:
Option (a) |
| 30. |
Which of following is not a valid assignment expression?
|
||||||||
|
Answer:
Option (d) |