

MCQOPTIONS
Saved Bookmarks
1. |
Consider the functionint func(int num) {int count = 0;while(num) {count++;num >>= 1;}return(count) ;}For func(435) the value returned is |
A. | 9 |
B. | 8 |
C. | 0 |
D. | 10 |
Answer» B. 8 | |