What is use of
super class

Answers were Sorted based on User's Feedback



What is use of super class..

Answer / preeti

Super class is one from which we derive a new class.
Only Existing class can be made as Super class.
C# has a super class or root class called "object" from
which all classess are derived.

Is This Answer Correct ?    22 Yes 3 No

What is use of super class..

Answer / ramesh

SuperClass is a Base Class for an derived class

Is This Answer Correct ?    17 Yes 2 No

What is use of super class..

Answer / radix

super class is also called as the base class or as the
parent class.

we can inherit methods of base class to our derived class
by using inheritance, where derived class is also callled
as the child class if and only if it is derived from the
parent

Exmaple you are the derived class of your parents who are
the base class for you, few of their methods
(looks,emotions,way of speech etc) are into you but few of
our methods(style,behaviour etc) cannot be into your parents

Is This Answer Correct ?    4 Yes 0 No

What is use of super class..

Answer / penchal das

super class is base class where we can call that method from
any where in that class.

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More C Sharp Interview Questions

What is data type c#?

0 Answers  


Explain briefly the difference between value type and reference type?

0 Answers   Accenture,


Can a child class call the constructor of a base class?

0 Answers  


What is the keyword used to prevent a class from being inherited by another class?

0 Answers   Siebel,


Why do we need to serialize data?

0 Answers  






Why do we override in c#?

0 Answers  


What is data types in c#?

0 Answers  


Is c# int immutable?

0 Answers  


What is a partial method?

0 Answers  


what is the difference between passing a value object by reference and a reference object by value?

4 Answers   TCS,


What are satellite assemblies? How will you get the different language strings?

0 Answers  


Trace the O/p for a program on inheritance and Polymorphism. 3 classes A,B,C A with two methods public virtual SomeMethodA public virtual SomemoreMethodA B:A overide SomeMethodA C:B new Method SomeMethodA override SomeMoreMethodA main method { b new instance of B b.SomeMethodA b.SomeMoreMethodA b1 new instance of C b1.SomeMethodA b1.SomeMoreMethodA }

2 Answers   Proteans,


Categories