MCQOPTIONS
Saved Bookmarks
| 1. |
public class Test { public void foo() { assert false; /* Line 5 */ assert false; /* Line 6 */ } public void bar() { while(true) { assert false; /* Line 12 */ } assert false; /* Line 14 */ } } What causes compilation to fail? |
| A. | Line 5 |
| B. | Line 6 |
| C. | Line 12 |
| D. | Line 14 |
| Answer» E. | |