Question 5 (4 points) 4) Listen What is the output of the following code snippet? String s "Computer"; String t "Science
Posted: Fri Jul 01, 2022 5:39 am
Question 5 (4 points) 4) Listen What is the output of the following code snippet? String s "Computer"; String t "Science"; String mystery s.substring (0, 1) + t.substring(1, 4); System.out.println (mystery);