Multiple choice What is the difference between == and equals()? Both == and equals() check whether two objects belong to the same instance. == compares characters inside a string object, while equals() check whether two objects belong to the same instance. Both == and equals() compare characters inside the string object. == operator checks whether two objects belong to the same instance, while equals() compares characters inside the string object. None of the above Reveal answer Fill a bubble to check yourself D Correct answer Explanation This is the correct answer as == operator checks whether two objects belong to the same instance, while equals() compares characters inside the string object.