Solved

What Does the Following Statement Sequence Print? String Str =

Question 113

Multiple Choice

What does the following statement sequence print? String str = "Java Is Good";
Int n = str.length() ;
String mystery = str.substring(n - 4, n) +
Str) charAt(4) + str.substring(0, 4) ;
System.out.println(mystery) ;


A) Java
B) Good Java
C) Good
D) Is Good

Correct Answer:

verifed

Verified

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

Related Questions