Multiple choice The equals() method is equivalent to the == operator, unless overridden True False Reveal answer Fill a bubble to check yourself A Correct answer Explanation The default implementation of the equals() method in the base java.lang.Object class compares object references using the == operator. Therefore, unless a class overrides equals(), calling obj1.equals(obj2) is functionally identical to obj1 == obj2.