String Substring Method
What is printed when the following code segment is executed?
String text = "Programming";
String result = text.substring(3, 7) + text.substring(0, 3);
System.out.println(result);
A
gramPro
B
ProGram
C
grammPro
D
Programming
Question Leaderboard
Not enough data yet to show leaderboard.
APFIVE