Home > Java Programming > Assertions > Questions and Answers
Q: |
What will be the output of the program (when you run with the -ea option) ? public class Test{ public static void main(String[] args){ int x = 0; assert (x > 0) : "assertion failed"; /* Line 6 */ System.out.println("finished"); } } | ||||||||||
|
Comment on this Question | |
Name: | |
|