Given string str1 and string str2, which expression returns true?
str1 = "Tomato"; str2 = "Apple";
The comparison is not possible
str1.compareTo(str2) < 0
str1.equals(str2)
str1.compareTo(str2) > 0