Solved

What Does the Following Statement Sequence Print? String Str =

Question 118

Multiple Choice

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


A) Ha
B) Har
C) Hy
D) Hry

Correct Answer:

verifed

Verified

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

Related Questions