How is hashset maintained in memory by java ?
What are the classes in the java collection framework? : java collections
what is class/object diagram
what is the diffrence between insurance and telecom domain?
what is difference between vector and arraylist?.
How to call the m1() method of Base class in below snippet ? class Base { public void m1() { System.out.println("Base m1 "); } public void m2() { System.out.println("Base m1 "); } } ====================== class Derived extends Base { public void m1() { System.out.println("Derived m1"); } public void m3() { System.out.println("Derived m3"); } public static void main(String[] args) { Base ob=new Derived(); ob.m1(); //System.out.println("Hello World!"+ob.m1()); } }
What is the use of hashcode in java ?
What is Visual Source Safe(source control Tool)?
Write a interface "CarOperations" with the following methods void turnOnEngin() void turnOffEngin() void turnOnLigths() void turnOffLights() void turnLeft() void turnRight() void accelerate() void deaccelerate() void putBreaks() void releaseBreaks()
what debugging tool that can be used to debug the java programs?
waht are architecture of web application?
What is an algorithm in java collection framework? : java collections
what is the difference between banking and insurance domain?