[Solved] Comparing strings is “1”
A comparison of Strings in Java is done character by character. Each character has a specific ranking to it based on where it appears in the Unicode character table (for this case, we can use ASCII, since it’s English). “1” would be considered less than “7”, as well as “T”. To invoke (place this inside … Read more