Assertions
© examsiri.com
Question : 4 of 6
Marks:
+1,
-0
Click the Exhibit button.
Given:
javac -source 1.3 Test.java
What is the result?
1. public class Test {
2.
3. public static void main(String [] args) {
4. boolean assert = true;
5. if(assert) {
6. System.out.println(”assert is true”);
7. }
8. }
9.
10. }Given:
javac -source 1.3 Test.java
What is the result?
Go to Question: