MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this program? class binary { public static void main(String args[]) { int num = 17; System.out.print(Integer.toBinaryString(num)); } } |
| A. | 1001c |
| B. | 10011 |
| C. | 11011 |
| D. | 10001 |
| Answer» E. | |