A final object reference cannot be changed to point to a different object once initialized. This is what final means for reference types. However, the object's internal state CAN be modified if it's mutable. The question asks about changing the reference itself, not the object's contents.