MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this program? class leftshift_operator { public static void main(String args[]) { byte x = 64; int i; byte y; i = x |
| A. | 0 64 |
| B. | 64 0 |
| C. | 0 256 |
| D. | 256 0 |
| Answer» E. | |