What Will Be The Output Of The Following Java Programp Pre #56
What will be the output of the following Java program?</p> <pre><code class="language-java" line="1"> class evaluate { public static void main(String args[]) { int a[] = {1,2,3,4,5}; int d[] = a; int sum = 0; for (int j = 0; j < 3; ++j) sum += (a[j] * d[j + 1]) + (a[j + 1] * d[j]); System.out.println(sum); } }</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 Data Types Variables Arrays - Java Literals & Java Variables - Quiz No.1.