method equalsIgnoreCase provided more functionality than was needed, and could have
been replaced with just the equals method to return "true".
A, B, and D are incorrect.
A is incorrect because there are no null values. The values are actually strings assigned the character sequence of "null".
B is incorrect because equalsignoreCase is a valid method name so no compilation error will occur.
D is incorrect because "true" is printed.
|