MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output for the below code ? public class Test { public static void main(String[] args) { byte i = 128; System.out.println(i); } } |
| A. | 128 |
| B. | 0 |
| C. | Compilation fails with an error at line 3 |
| D. | None of these |
| Answer» D. None of these | |