Solved

What Does the Following Statement Sequence Print? String Str =

Question 7

Multiple Choice

What does the following statement sequence print? String str = "Hello";
Int n = str.length() ;
String mystery = str.substring(0, 1)
+ str.substring(n - 2, n + 1) ;
System.out.println(mystery) ;


A) Run-time error
B) He
C) Ho
D) Hry

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions