Submitted Questions

  • Abstract class and interfaces

    Where should we use exactly abstract class and interfaces?

    yuvaraj

    • May 11th, 2012

    All the methods declared inside an interface are abstract whereas abstract class must have at least one abstract method and others may be concrete or abstract. b) In abstract class, key word abstract...