Multiple Inheritance
Hi ,
I have doubt in Object Oriented Programming
All the java programmers know that java doesnot support multiple inheritance i.e we can't extend two classes in subclass but we can achieve this through interfaces.
Object is super class to all classes i.e all classes are subclasses to Object .
suppose if we try to write servlet then we will extend GenericServlet or HttpServlet even though Object is also super class for that servlet. i just want to know where this object class is becomes the super class ,why it is the super class.what exactly the methods in the Object class.
Thanks In Advance

