Question: What is the output from the following code? String s = Georgia Tech; String s1 = s.substring(0,7); String s2 = s1.substring(2); String s3 = s2.substring(0,3);
What is the output from the following code?
String s = "Georgia Tech"; String s1 = s.substring(0,7); String s2 = s1.substring(2); String s3 = s2.substring(0,3); System.out.println(s3);
Group of answer choices
You will get an index out of bounds exception
orgi
org
eorg
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
