What is the difference between interface & abstract class?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

What are the properties of thread?

0 Answers  


Can we serialize static variables in java?

0 Answers  


What is stop(), suspend(), resume() method?

3 Answers  


What is the java reflection api? Why it’s so important to have?

0 Answers  


How do you identify if jvm is 32-bit or 64-bit from java program?

0 Answers  






Can list be null in java?

0 Answers  


What is meant by data hiding in java?

0 Answers   Aspire, Infogain,


What is scanner in java?

0 Answers  


Difference between Linked list and Queue?

0 Answers   Virtusa,


What will be the output of the program? public class Test { public static void main(String args[]) { ArrayList<String> list = new ArrayList<String>(); list.add("2"); list.add("3"); list.add("4"); list.add("5"); System.out.println("size :"+list.size()); for(int i=0;i<list.size();i++) { list.remove(i); } System.out.println("size after:"+list.size()); } }

5 Answers   Rolta,


Can we use String with switch case?

0 Answers  


Write a program to print fibonacci series up to count 10.

0 Answers  


Categories