Java SE 7 Programmer II (1Z0-804)
© examsiri.com
Question : 5 of 8
Marks:
+1,
-0
public class Truthy {
 public static void main(String[] args) {
  int x = 7;
  assert (x == 6) ? "x == 6" : "x != 6";
 }
}What is the result if you try to compile Truthy.java and then run it with assertions enabled?
Go to Question: