Which code checks whether the characters in two Strings,named time and money, are the same?
time
money
if(time <> money){}
if(time = money){}
if(time == money){}
if(time.equals(money)){}