What is binary tree in java?
what is use of business objects?
Which command from the jdk compiles a java program?
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 .
difference throws and throw in java
Difference between string, string builder, and string buffer?
What is the base class in java from which all classes are derived?
How to display names of all components in a Container?
What is method overriding in java ?
Can an interface implement another interface?
Can we assign the reference to this variable?
What are the differences between wait() and sleep()?
Can we pass a primitive type by reference in java? How