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:
56 comments Page 1 of 6.

Suchismita said:   2 years ago
Abstart class creates a static of class.
(1)

Faiz said:   4 years ago
Anyone explain it with examples.

Venkatesh said:   6 years ago
Explain the Difference between class instance & class object.

Madhu said:   6 years ago
An abstract class does not have any instance of a class.
(2)

Fuad Al Masud said:   6 years ago
An abstract class is a private class which is used by admin panel.
(1)

Ashitosh said:   7 years ago
How many objects can be created from an abstract class?
(2)

ManilKumar said:   7 years ago
The abstract class contains at least one pure virtual function.

The pure virtual function by using a pure specifier ( = 0 ).
(1)

Raj Kumar Sepat said:   7 years ago
We can not create the instance of the Abstract Class.

So answer will be zero (o) instance of the abstract class.

Hassan maha said:   8 years ago
Which class has maximum instances, Can anyone tell the types of class having instances?
(1)

Prashant said:   8 years ago
So let's say we have a team creating a big project and we want the whole team to create many classes but they all must inherit a single BASE class for some particular functionality like debugging. So if we would create an abstract class which has only one virtual function which gives a debugging interface and inherits this is in all the other team's classes it would be easier. Why virtual because the derived classes could also have the same function with the same signature.
(4)


Post your comments here:

Your comments will be displayed after verification.