Multiple Choice
The statement
s1.startsWith("art")
Has the same result as which of the following?
A) s1.regionMatches(0, "art", 0, 3) ;
B) s2 = s1.getChars(0, 3) ; s2.equals("art") ;
C) s1.regionMatches(true, 0, "art", 0, 3) ;
D) All of the above
Correct Answer:

Verified
Correct Answer:
Verified
Q2: Given the following declarations: <br>StringBuilder buf;<br>StringBuilder buf2
Q3: Consider the Java segment: <br>String line1 =
Q4: Which of the following statements is true?<br>A)
Q5: Which of the following are static Character
Q6: Consider the examples below: <br>A. a string.<br>B.
Q8: The length of a string can be
Q9: A String constructor cannot be passed _.<br>A)
Q10: The statement<br> s1.equalsIgnoreCase(s4)<br>Is equivalent to which of
Q11: Consider the statement below: <br>StringBuilder sb1 =
Q12: Which class is not a type-wrapper class?<br>A)