how can be object class inherited to all class in a program
when java does not support multiple inheritance??
Answers were Sorted based on User's Feedback
Answer / ashok yadav
A class always extends only one class. That is the Object
class or the class defined with the extends keyword. That
class in turn can extend also only one class until eventual
the Object class is reached.
| Is This Answer Correct ? | 4 Yes | 0 No |
Actuly in above it is the case of multilevel inheritance.and obj clas is super class which is extended by other classes tht is tree structure i.e 1 - * form . Multiple inheritance is wher 1 class is having 2 or more base class at same time ie *-1. So it is not multiple it is hiricle inheritnce.
| Is This Answer Correct ? | 0 Yes | 0 No |
give an example for encapsulation?
Which class should you use to obtain design information about an object
how to make hashmap object as synchronized object?
What are keywords give examples?
How do you sing an Applet ?
write a program to create an arraylist with string(add,remove) operation.and value should be enter through keyboard.
class test { private static void main(String []adsf) { } } explain me that the above code is error or exception
Can we have multiple classes in single file ?
Is void a type?
When should we create our own custom exception classes?
What is the use of parse function in java?
How can I right-justify a string?