Advertisements
Advertisements
Question
What is the output of the Java code given below?
String color [ J = {"Blue", "Red", "Violet"}; System.out.println(color[2].length();
Options
6
5
3
2
MCQ
Solution
6
Explanation:
The array element at index position 2 i.e. color[2] is "Violet" and the number of characters in "Violet" is 6.
shaalaa.com
Output Statement in Java Programming
Is there an error in this question or solution?