What is data type in computer?
No Answer is Posted For this Question
Be the First to Post Answer
Which collection allows duplicate values in java?
What is left shift and right shift?
What are java packages? What's the significance of packages?
How can you debug the Java code?
what is the difference between Object Based Language and Object Oriented Language?
how system.out.println() works?
What is hashtable and explain features of hashtable?
Which list does not allow duplicates in java?
What is java util?
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 .
Why do we use variables?
How to excute - Interface - Inner class- method can any one tell how to execute/ call this main method public interface abc { static int i=0; void dd(); class a1 { a1() { int j; System.out.println("inside"); }; public static void main(String a1[]) { System.out.println("in interfia"); } } }