Answer Posted / chandrarekha
Yes java supports multi dimensional arrays..care should be
taken while creating an array, as the array elements are
considered to be objects...we use new operator
int arr[][]=new int[3][]
arr[0]=new int[2];
arr[1]=new int[3];
arr[2]=new int[4];
the second dimension need not always have the same number
of elements.
Is This Answer Correct ? | 11 Yes | 3 No |
Post New Answer View All Answers
Is there any tag in htm to upload and download files?
What is difference between char array and string?
What is the difference between procedural and object-oriented programs?
What are examples of modifiers?
Can a method inside a interface be declared as final?
What does business logic mean?
What is a method in coding?
What is the final class modifier?
What is java in detail?
java program with complete 4 oops concepts implemented example
What is break and continue statement?
What is an array length?
What do you know about the garbage collector?
What is a null check?
What is the difference between the Reader/Writer class hierarchy and the InputStream/OutputStream class hierarchy?