True or False: If a.equals(b) returns true, then a == b must also return true.
a.equals(b)
true
a == b
False
True