Answer Posted / santosh anand
The Java programming language does not really support multi-dimensional arrays. It does, however, support arrays of arrays. In Java, a two-dimensional array x is really an array of one-dimensional arrays:
int[][] x = new int[3][5];
The expression x[i] selects the one-dimensional array;
the expression x[i][j] selects the element from that array.
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
How can we break singleton in java?
What is the exact difference in between Unicast and Multicast object? Where will it be used?
Can you extend singleton class?
What are the steps involved to create a bean?
What is module in oop?
Where are variables stored?
What are the actions that can occur when a thread enters blocked state?
Explain about complier design(phases)
What happens to a static var that is defined within a method of a class?
What are the different types of multitasking?
What are the ways in which a thread can enter the waiting state?
How can you share data between two thread in Java?
What is local variable and instance variable?
How does sublist works in java?
What are abstract classes and anonymous classes?