x

Choose Country Code

x

Direction

x

Ask a Question

  • Ask a Question
  • Scan a Question
  • Post MCQ
  • Note: File extension must be of jpg, jpeg, png, bmp format and file size must not exceed 5 MB
x

Ask a Question

x

x
x
x
Hire a Tutor

Answers and Solutions

What's Your Question?
Answer

The class whose members are inherited is called the base class. The class that inherits the members of the base class is called the derived class. C# and .NETsupport single inheritance only. That is, a class can only inherit from a singleclass

Answer

Inheritance is one of the famous concept in Object Oriented Programming Paradigms. It means all the properties of one is transferred to another that means technically, the class, object, member data and member functions of Class A is transfered to Class B. Here the Class A is called as Base Class and the Class B is called as Derived Class. 

Answer

When creating a class, instead of writing completely new data members and member functions, the programmer can designate that the new class should inherit the members of an existing class. This existing class is called the base class, and the new class is referred to as the derived class.

Answer

A derived class is a class created or derived from another existing class. The existing class from which the derived class is created through the process of inheritance is known as a base class or superclass.

Answer

 In oops concept, base class is one of the class, which have member variable and member function in it.

Eg.Number

Derived class is a class which is derived from base class

Eg. even ,odd

we can use this OOPS concept in various languages like , JAVA, C++ etc.

Answer

the first and the the original class we createbin any oops language is called base class and all the other classes that have derived members and methods ie properties of bsse class are called derived class

Post Answer and Earn Credit Points

Get 5 credit points for each correct answer. The best one gets 25 in all.

Post Answer