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 inheritance in java?
What is polymorphism? When is it employed? give an example.
What is Abstract method and how different from Virtual Method?
what is virtual function and pure virtual function ?
Which of the following is tightly bound ? Inheritance or composition ?
What is a try/ catch block?
What is the use if instanceof keyword? And how do refer to a current instance of object?
Comment: C++ "includes" behavior and java "imports"
Suppose a class acts an Actor in the problem domain, how to represent it in the static model?
Write basic concepts of oops?
Explain about object oriented databases?
Does java support multiple inheritance? if not, what is the solution?