What are the classes in the java collection framework? : java collections
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 enumerator of the java collection framework? : java collections
"Sun Certified Java Programmer" This is one String , we need to print SCJP, write the java code dynamically? pls reply this questions
What are the types of the main implementing classes in the map interfaces? : java collections
What is an algorithm in java collection framework? : java collections
What are the uses of the set interfaces in the java collections? : java collections
Which interface does java.util.hashtable implement?
what about web architecture?
Is it possible to create Userdefined Unchecked Exception also?If Yes, give an example?
How to use ANT?
what is difference between struts1.2 and struts2.0
What is a constructor?