Suppose that s1 and s2 are two strings. Which of the following statements or expressions are incorrect?
String s = "Welcome to Java";String s3 = s1 + s2;String s3 = s1 - s2;s1 == s2;s1 >= s2;s1.compareTo(s2);int i = s1.length();char c = s1(0);char c = s1.charAt(s1.length());
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.