Answer Posted / ashokmail.java@gmail.com
Yes . Java support multi dimensional arrays.
Example : int[][] i = {(1,2),(2,4)};
| Is This Answer Correct ? | 12 Yes | 6 No |
Post New Answer View All Answers
What are three ways in which a thread can enter the waiting state in java programming?
How can we find the actual size of an object on the heap?
What is double checked locking in singleton?
What are the types of literals?
What is a boolean output?
What are the new features in java 8? Explain
What is ctrl m character?
Name few "optional" classes introduced with java 8 ?
Can I overload to string method
Can abstract class have private constructor?
Is it possible to override the main method?
What are accessor methods in java?
How do you find the absolute value?
What are some characteristics of interference class?
I want to control database connections in my program and want that only one thread should be able to make database connection at a time. How can I implement this logic?