InterviewSolution
Saved Bookmarks
| 1. |
What is the purpose of the |
|
Answer» CORRECT answer is (c) Bitwise Left Shift The BEST I can explain: The << operator takes two numbers as operands. Then it SHIFTS the bits of the first operand by the value present in the second operand from right to left. The second operand however has to be a number less than 32 only. Otherwise the operation will not work. |
|