what's the difference between abstract class and concreate
class? what's the meaning of standard template library(STL)?
Answer Posted / a.srinivas rao
An abstract class is a class which contains atleast one
abstract method(i.e., an abstract method is one which has
only definition not implementation,which is done in some
other class.
We cannot create an object for Abstract class.
A class is said to be a concrete class if and only if it
contains fully defined methods.Defined methods are also
known has "concrete methods " or "Implemented methods".
We can instantiate an object for concrete class.
| Is This Answer Correct ? | 72 Yes | 4 No |
Post New Answer View All Answers
Why should a c++ programmer be interested in stl?
What is the stl, standard template library?
What are the various types of stl containers?
What is a list in c++ stl?
a program using one dimensional array that searches a number if it is found on the list of given input numbers given by the user and locate its exact location in the list.
What is a standard template library (stl)?
Define stl.
What are the different types of stl containers?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
sir please send me bpcl previous question papers
What is a standard template library (stl)? What are the various types of stl containers?
draw a flowchart that accepts two numbers and checks if the first is divisible by the second.
What is a stl vector?
how to use C++?
write a program to convert a decimal number in to its equivalent binary number?