41.  What is use of a abstract variable?

42.  Can you create an object of an abstract class?

43.  Can a abstract class be defined without any abstract methods?

44.  Class C implements Interface I containing method m1 and m2 declarations. Class C has provided implementation for method m2. Can i create an object of Class C?

45.  Can a method inside a Interface be declared as final?

46.  Can an Interface implement another Interface?

47.  Can an Interface extend another Interface?

48.  Can a Class extend more than one Class?

49.  Why is an Interface be able to extend more than one Interface but a Class can't extend more than one Class?

50.  Can an Interface be final?