1.

What is the value of the following 8-bit integer after all statements are executed?
int a = 5;
a = a << 6;
a = a >> 6;

A. Implementation defined
B. -1
C. 127
D. 1
E. None of these
Answer» B. -1


Discussion

No Comment Found

Related MCQs