How do you make derived class as an abstract class?
Answer / karthick s
We can make the derived class as an abstract,by inheriting
the class(base) which containing one pure virtual function.
After inheriting, we can't override it in derived class.
Then the derived class becomes abstract...
| Is This Answer Correct ? | 22 Yes | 4 No |
Can we have a private virtual method ?
char* ptr = "Rahul"; *ptr++; printf("%s",ptr); What will be the output
Can java compiler skips any statement during compilation time?
What is multidimensional array?
What is destructor example?
what is the main difference between sizeof() operator in c and c++
What is abstraction in oops?
What does and I oop mean in text?
String = "C++ is an object oriented programming language.An imp feature of oops is classes and objects".Write a pgm to count the repeated words from this scenario?
what are the characteristics of oops?
which structured data type is not used in c++? 1.union 2.structure 3.string 4.boolean
Why is static class not inherited?