"To compare two objects in a class by values, we use ________."
C) Write an equals method that will make a field by field compare of the two objects.
B) Write a method to do a byte-by-byte compare of the two objects.
D) Since objects consist of several fields, you cannot compare them
A) Use the == operator, e.g., object1 == object2.