What is the output of the following code snippet?
3: int x = 0; 4: String s = null; 5: if(x == s) 6: System.out.println("Success"); 7: else 8: System.out.println("Failure");
D.
The variable x is an int and s is String type.
The two data types are incomparable.