Expeditors interview question

For java questions in phone interview it was general java questions you probably would have learned in your first coding class in java. Ex: How do you compare a string to another string

Interview Answer

Anonymous

11 Sept 2022

Use the equals() method like str1.equals(str2)

1