Where can i get Latest SUN Certification Dumps and what are
the Sun Certification Codes that are available, Im new to
JAVA, so please gimme info as i need to write J2EE - Core Java
Certification
No Answer is Posted For this Question
Be the First to Post Answer
What is the base class of all exception classes in java?
How TreeMap sorts the objects inside it?? suppose if have include one employee object and one car object. On what basis it will sort?
How many inner classes can a class have?
What is System class and its purpose?
What is an i/o filter?
Are the equals() and hashCode() protected methods of object class?
Is it compulsory to have atleast one abstract method in abstract class?
What is the difference between static (class) method and instance method?
Can a abstract class be declared final?
What is tcp and udp?
Why java Don't Support Multiple interitence
This is my code i have a doubt class ab implements a,b { public void add() { System.out.println("Hi") } } interface a { public void add(); } interface b { public void add(); } in this code i have two interface implemented in the class has same method.just i want to know which method of interface implemented in the class. interface a or interface b? confused me .