Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What is an abstract class?

Answer Posted / padmas

Abstract class is the class designed for inheritance, for which no object will be created in the programming, but objects created for those classes that are inherit functions, methods from objects of classes those inherited. For example class A is a abstract class ,class B inherits A, objects of class B can be created but not A. These objects use the methods of A also B.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the meaning of c++?

967


What is operators in c++?

956


What is the latest c++ version?

1051


Can we create object of interface?

1063


Difference between function overloading and function overriding.

979


What is overriding in oops?

1056


Differentiate between an external iterator and an internal iterator? What is the advantage of an external iterator.

1005


Explain operator overloading.

1000


Define type casting in C++.

966


What is class and example?

1090


Write a program to interchange 2 variables without using the third one.

1003


What is the use of main function in c++?

926


Explain the FOR loop with a help of a code.

920


class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash

2224


Differentiate between an external iterator and an internal iterator?

943