What does the following code display? String s= "What we think, we become"; String s1 = s.substring(5); String s2 = s1.s
Posted: Tue Jul 05, 2022 10:25 am
What does the following code display? String s= "What we think, we become"; String s1 = s.substring(5); String s2 = s1.substring(3); System.out.println(s2); Select one A. at we think, we become OB. think, we become OC. hink, we become D. nothing this is an erron