What is a super class and how super class be called?
Answers were Sorted based on User's Feedback
Answer / ramakrishna challapalli
super class is a class which is inherited by sub class.
Super class methods are bu using super keyword Syntax is
super.methodname();
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ravikiran(aptech mumbai)
A super class is the one which is capable for the display of
members and methods to make the subclass to access them.
A super class will be get called by using extends keyword in
subclass
| Is This Answer Correct ? | 1 Yes | 1 No |
super class is the class that is inherited.
| Is This Answer Correct ? | 0 Yes | 2 No |
What is the collection interface?
What is difference between adapter class and listener?
Why is stringbuffer faster than string?
Define how does a try statement determine which catch clause should be used to handle an exception?
How do you delete a list in java?
Why is the singleton pattern considered to be an anti pattern?
What modifiers are used for interface declaration?
How to send a request to garbage collector?
How do you input a string in java?
Explain the scope or life time of class variables or static variables?
How will you compute size of a structure?
What is the generic class?