What best describes what will happen if this code is run? String [] sa=new String[]{"Semester", "is", "DONE!"}; sa[2]="O
Posted: Sat May 14, 2022 8:12 pm
What best describes what will happen if this code is run?
String [] sa=new String[]{"Semester", "is", "DONE!"};
sa[2]="OVER!";
A. Semester is DONE!
will be output.
B. Semester is OVER!
will be output.
C.Semester
will be output.
D. The code contains a syntax error so nothing will occur.
E. Nothing will be output.
String [] sa=new String[]{"Semester", "is", "DONE!"};
sa[2]="OVER!";
A. Semester is DONE!
will be output.
B. Semester is OVER!
will be output.
C.Semester
will be output.
D. The code contains a syntax error so nothing will occur.
E. Nothing will be output.