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
d. All of the above
Computer Science & Information Technology
You might also like to view...
Calculations that are performed on a group of records are called ________ functions
Fill in the blank(s) with correct word
Computer Science & Information Technology
All programming languages support four broad data types.
Answer the following statement true (T) or false (F)
Computer Science & Information Technology