Menu
Question Index
...

What will be the output of the following program?

public class LengthOfArray1
{
    public static void main(String[] args)
    {
        int[][][] x = new int[3][][];
        int i, j;
        x[0] = new int[3][];
        x[1] = new int[2][];
        x[2] = new int[5][];
        int k = 0;
        for (i = 0; i < x.length; i++)
        {
            for (j = 0; j < x[i].length; j++)
            {
                x[i][j] = new int[i + j + 1];
                k++;
            }
        }
        System.out.println("K value is: " + k);
    }
}


K value is: 7
K value is: 9
K value is: 10
K value is: 11
Compilation Error or Runtime Error

Doubts

Problems

Topic: Learn Arrays And Loops

Read this topic
Take test on this topic

0
Wrong
Score more than 2 points

© meritcampus 2019

All Rights Reserved.

Open In App