Explain about Superclass and Subclass?

Answers were Sorted based on User's Feedback



Explain about Superclass and Subclass?..

Answer / jagadeesh

sub class is the child of super class and super class is
the parent of sub class

sub class auto matically having all the properties of sub
class and super class itsef, but super class having all the
properties of super class only not the sub class properties.

Is This Answer Correct ?    8 Yes 0 No

Explain about Superclass and Subclass?..

Answer / ravikiran(aptech mumbai)

super class is the one which will declare members and
methods and will allow all the subclasses to make use of them.

sub class is the class which inherits the mebes and methods
from the super class and declares it's own members as well.

Is This Answer Correct ?    5 Yes 1 No

Explain about Superclass and Subclass?..

Answer / sanjay singh chauhan

like above example both are right the child class have all
the proprety of the parrent class when we requored then we
call with child class object;

Is This Answer Correct ?    3 Yes 1 No

Explain about Superclass and Subclass?..

Answer / niranjanravi

Super class is the class that is inherited and Subclass is
the class that does inheriting.

Is This Answer Correct ?    4 Yes 3 No

Explain about Superclass and Subclass?..

Answer / kumari

super class all properties bydefault available to the sub class super class properties and methods inherited in subclass
if sub class not satisfy with super class properties then modify that properties by using oop's concept.

Is This Answer Correct ?    2 Yes 2 No

Explain about Superclass and Subclass?..

Answer / mike

The original object or an entity class becomes a superclass of the original object or entity when a subclass has been derived one or more occurances inheriting the attributes of the superclass.

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More Core Java Interview Questions

What is java thread dump, how can we get java thread dump of a program?

0 Answers  


What is the purpose of garbage collection in java, and when is it used?

0 Answers  


Draw a UML class diagram for the code fragment given below: public class StringApplet extends Applet { private Label sampleString; private Button showTheString; private ButtonHandler bHandler; private FlowLayout layout; public StringApplet() { sampleString = new Label(" "); showTheString = new Button (" Show the String"); bHandler = new ButtonHandler(); layout = new FlowLayout(); showTheString.addActionListener(bHandler); setLayout(layout); add(sampleString); add(showTheString); } class ButtonHandler implements ActionListener { public void actionPerformed(ActionEvent e) { samplestring.setText("Good Morning"); } } } Note: The methods need not be indicated on the diagram.

0 Answers  


What is lastindexof in java?

0 Answers  


What is the difference between the synchronized() & static synchronized()?

2 Answers   HP, SparkTG,






Does sprintf add a null terminator?

0 Answers  


What is the range of the short datatype?

2 Answers  


what is the constructor and how many types of constructors are used in java?

0 Answers  


How do you check if two strings are equal in java?

0 Answers  


How many bits are used to represent unicode, ascii, utf-16, and utf-8 characters in java programming?

0 Answers  


Can anonymous class have constructor?

0 Answers  


In what circumstances, compiler will supply a default constructor for a class?

4 Answers  


Categories