Explain, java is compatible with all servers but not all browsers?
No Answer is Posted For this Question
Be the First to Post Answer
Why singleton class is used in java?
Does any tag exists in HTML to upload and download files ?
Can we inherit a class with private constructor?
How can you make sure that your singleton class will always return single instance in multi-threaded environment?
Can we define private and protected modifiers for the members in interfaces?
What are the different types of inheritance in java?
Are constructors methods?
What is JFC?
How to call one constructor from the other constructor ?
What is protected and friendly?
Explain about fail safe iterators in java?
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 .