Multiple Choice
The statement
s1.equalsIgnoreCase(s4)
Is equivalent to which of the following?
A) s1.regionMatches(true, 0, s4, 0, s4.length() ) ;
B) s1.regionMatches(0, s4, 0, s4.length() ) ;
C) s1.regionMatches(0, s4, 0, s4.length) ;
D) s1.regionMatches(true, s4, 0, s4.length) ;
Correct Answer:

Verified
Correct Answer:
Verified
Q5: Which of the following are static Character
Q6: Consider the examples below: <br>A. a string.<br>B.
Q7: The statement <br>s1.startsWith("art")<br>Has the same result as
Q8: The length of a string can be
Q9: A String constructor cannot be passed _.<br>A)
Q11: Consider the statement below: <br>StringBuilder sb1 =
Q12: Which class is not a type-wrapper class?<br>A)
Q13: Consider the statements below: <br>StringBuilder sb =
Q14: An anonymous String _.<br>A) has no value<br>B)
Q15: Consider the Java segment: <br>String line1 =