Print (show result) of the following arrays
1. int[ ] a = {2,4,7,10};
2. int[ ] b = a.fill(list,7);
3. int[ ] c = a.fill(list,1,3,8);
What is the printout of the following code? Explain the answer
String s1 = “Welcome to CSET 1200”
String s2 = s1.replace(“o” , “abc”)
String s3 = s1.substring(0, 11) + "HTML";
System.out.println(s1)
System.out.println(s2)
System.out.println(s3)