MCQOPTIONS
Saved Bookmarks
| 1. |
In the given program, how many lines of output will be produced? public class Test { public static void main(String [] args) { int [] [] [] x = new int [3] [] []; int i, j; x[0] = new int[4][]; x[1] = new int[2][]; x[2] = new int[5][]; for (i = 0; i < x xss=removed xss=removed xss=removed> |
| A. | 7 |
| B. | 9 |
| C. | 11 |
| D. | 13 |
| E. | Compilation fails |
| Answer» D. 13 | |