What Will Be The Output Of The Following Java Programp Pre #249
What will be the output of the following Java program?</p> <pre><code class="language-java" line="1"> class Output { public static void main(String args[]) { int arr[] = {1, 2, 3, 4, 5}; for ( int i = 0; i < arr.length - 2; ++i) System.out.println(arr[i] + " "); } }</code></pre>
This multiple choice question (MCQ) is related to the book/course
gs gs128 Java.
It can also be found in
gs gs128 Java Classes Methods - Java Arrays Revisited & Keyword static - Quiz No.1.