What is a pure virtual function?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
• A function declared with = 0 in a base class, making it abstract. Example:
• virtual void display() = 0;
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
• A function declared with = 0 in a base class, making it abstract. Example:
• virtual void display() = 0;
| Is This Answer Correct ? | 0 Yes | 0 No |
• A function declared with = 0 in a base class, making it abstract. Example:
• virtual void display() = 0;
| Is This Answer Correct ? | 0 Yes | 0 No |
What is polymorphism and abstraction?
0 Answers Agilent, Integreon, ZS Associates,
Why dynamic loading is used in object-oriented programming?
What are inner classes and what is the practical implementation of inner classes?
What is the main advantage of using inheritance?
Can we reduce the visibility of the inherited or overridden method ?
What is data abstraction? what are the three levels of data abstraction with Example?
Does a class inherit the constructor of its super class?
What does the keyword virtual represented in the method definition?
what is virtual function and pure virtual function ?
Which OOPS concept is used as a reuse mechanism?
What is the difference between new and override?
What is data encapsulation and what's its significance?