Q. What will be the output?
Code:System.out.println("Java".equals(null));
β
Correct Answer: (B)
false
Explanation: equals(null) always returns false.