Problem Statement
Which operator in Java checks whether two object references point to the exact same object?
Explanation
In Java the == operator checks if two references refer to the same object in memory, not if they are logically equal. equals() checks content equality if overridden.
