R
Q. What is the output of the below Java program?
Code:
int[] marks = {35,65,95};
System.out.print(marks.length + "," + marks[1]);
System.out.print(marks.length + "," + marks[1]);
- Correct Answer - Option(C)
- Views: 167
- Filed under category JAVA
Discusssion
Login to discuss.