

MCQOPTIONS
Saved Bookmarks
1. |
Consider the function func shown below: int func(int num) { int count = 0; while (num) { count++; num >>= 1; } return (count); } The value returned by func(435)is __________. |
A. | 8 |
B. | 9 |
C. | 10 |
D. | 11 |
Answer» E. | |