Q. What is the output of the below Java program?
Code:
int[] marks = {35,65,95};
System.out.print(marks.length + "," + marks[1]);
β
Correct Answer: (C)
3,65
int[] marks = {35,65,95};
System.out.print(marks.length + "," + marks[1]);
You must be Logged in to update hint/solution