What are the main classes of the list interfaces? : java collections
No Answer is Posted For this Question
Be the First to Post Answer
What is markup language?
What is Visual Source Safe(source control Tool)?
How many controlers are there in spring? Plz send me ans
what are advantages of HQL? what are advantages of Native SQL? what are advantages of Criteria API?
who will give req's to u?. how they send req's to u? . what design documents contains?. when bugs raised on other developer code how to report to them?.(throgh mail or ........). how to retrive 100 recods from dao layer to presentation layer.using which collection?. what is sequence diagram.?.
"Sun Certified Java Programmer" This is one String , we need to print SCJP, write the java code dynamically? pls reply this questions
what is jndi?
Should we create system software ( e.g operating system ) in java ?
Hi we have an urgent requirement for Java/J2ee technical lead position & also looking for "Java Guidewire claimcentre" experienced professional for Bangalore location if interested can reach srisanh@gmail.com
What are the different types of features of the java collections framework? : java collections
What is the use of the list interface in the java collection? : 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()); } }