-
-
Hashmap and Hashtable
which one is better and faster between hashmap and hashtable? Explain the situation where you would use them ?
-
-
-
Sort an Arraylist having Group of Objects
Employee object having emp name, emp id, emp salary... An arraylist has a list of employee object.How will you sort this arraylist?
-
Abstract - How do you make object
If all the methods in the Abstract class is defined, then it is a Abstract class? And can we make object out of it?
-
-
-
-
-
Taking the Build.
What is mean by taking "build"? And Which processes and modules of an application involved while taking Builds.
-
-
-
-
-
-
-
-
Exception Handling
What is the output of the following program, When tested under JDK 5.0class ExceptionDemo{ public static void main(String[] args) { int a[] = new int[] {1,2,3,4,5}; try{ System.out.prinltln(a[6]); } catch(Exception e) { System.out.println("Catching Exception ..."); } catch(ArrayIndexOutofBoundsException ae) { System.out.println("Catching ArrayIndexOutOfBounds...
-
Core Java Interview Questions
Ans