MCQOPTIONS
Saved Bookmarks
| 1. |
1. public class Test{2.public static void main(String [] args){3.int x = 0;4.// insert code here5.do{ } while(x++ < y);6.System.out.println(x);7.}8. }Which option, inserted at line 4, produces the output 12? |
| A. | nt y = x; |
| B. | nt y = 10; |
| C. | nt y = 11; |
| D. | nt y = 12; |
| E. | one of the above will allow compilation to succeed. |
| Answer» D. nt y = 12; | |