C++ Programming - OOPS Concepts - Discussion

Discussion Forum : OOPS Concepts - General Questions (Q.No. 8)
8.
How many instances of an abstract class can be created?
1
5
13
0
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
57 comments Page 3 of 6.

Prashant Indolia said:   1 decade ago
We can not create object of an abstract class because abstract class is incomplete class.

Amit said:   1 decade ago
What is reusability concept and what are the uses of abstract class?

Prashant Patle said:   1 decade ago
Why we use abstract class?

Mukul Rawal said:   1 decade ago
Abstract Class just act as a base class to the derived class/classes.

PVN b091086 said:   1 decade ago
Abstract Class is act like a base class to the derived classes;

So, we can't create any instance to Abstract class.

Kousalya said:   1 decade ago
Explain about the reusability concepts.

Zeba desai said:   1 decade ago
Abstract class have only declaration, no any definition. Without any body or definition we cannot create instances.

Priyanka said:   1 decade ago
Can anyone tell me the exact implementation scenario where abstract class is used?

Rajaram said:   1 decade ago
When a class is act as a parent class for all other classes and it should not be get instantiated by any derived class.

Basavaraj said:   1 decade ago
Abstract class never allowed to create an instance, hence answer is 0.


Post your comments here:

Your comments will be displayed after verification.