Which of the following creates the string of the numbers from 1 to 1000 most efficiently?
A) String s;
for (int i = 1; i <= 1000; i++)
S += i;
B) StringBuilder sb = new StringBuilder(10) ;
for (int i = 1; i <= 1000; i++)
Sb) append(i) ;
String s = new String(sb) ;
C) StringBuilder sb = new StringBuilder(3000) ;
for (int i = 1; i <= 1000; i++)
Sb) append(i) ;
String s = new String(sb) ;
D) All are equivalently efficient.
Correct Answer:
Verified
Q15: StringBuilder objects can be used in place
Q16: The statement
s1.startsWith("art")
Has the same result as
Q17: Which of the following statements is true?
A)
Q18: String objects are immutable. This means they
Q19: Given the following declarations:
StringBuilder buffer =
Q21: Which of the following statements is true?
A)
Q22: Consider the Java segment:
String line1 =
Q23: Consider the Java segment:
String line1 =
Q24: Which class is not a type-wrapper class?
A)
Q25: Which of the following are static Character
Unlock this Answer For Free Now!
View this answer and more for free by performing one of the following actions
Scan the QR code to install the App and get 2 free unlocks
Unlock quizzes for free by uploading documents