206k views
0 votes
Array of array in ________is not fixed but in ____it is in arectangle.

C# , Java
C++ , C#
Java , C++
C++ , Java

User Kofo
by
5.5k points

2 Answers

5 votes

Answer: C# , Java

Step-by-step explanation:

In C# we have an array of array but it is not fixed as it can have different dimensions. Its elements are interface type and are initialized to null.

In java the elements of an array can be any type of object we want such as it can be a rectangle.

In java we can use

String[ ][ ] arrays = { array1, array2, array3, };

Here the string array consist of arrays 1,2,3.

User Shaurya
by
5.4k points
5 votes

Answer: C# , Java

Step-by-step explanation:

In C# we have an array of array but it is not fixed as it can have different dimensions. Its elements are interface type and are initialized to null.

In java the elements of an array can be any type of object we want such as it can be a rectangle.

In java we can use

String[ ][ ] arrays = { array1, array2, array3, };

Here the string array consist of arrays 1,2,3.

User Karim Tawfik
by
4.8k points