What is Collections API?
Answer / ravikiran(aptech mumbai)
collections api contains group of classes and interfaces and
methods that deal with insertion,deletion and retrieval of
objects from a particular collection
| Is This Answer Correct ? | 1 Yes | 2 No |
What is the program development process?
What is difference between equals and hashcode method?
Where are register variables stored?
Difference in the use of print, println, and printf.
What does you mean in math?
Can we create object of inner class in java?
Which class is extended by all other classes?
How to sort array in descending order in java?
Need 2+ yrs experienced java techinical question papaer for company Iflex
I declared main() method as private. But it still running and displaying the output. Please Answer it . Code Snippet as Below: import java.io.*; class over { private static void main(String[] args) { int high = Integer.MAX_VALUE; int overflow = high + 1; int low = Integer.MIN_VALUE; int underflow = low - 1; System.out.println(high + "\n" +overflow +"\n"+ low +"\n"+underflow); //System.out.println(overflow); //System.out.println(low); //System.out.println(underflow); } }
What is a jagged array in java?
why we use merge option in hybernate pls give a ex snippet