what's the difference between abstract class and concreate
class? what's the meaning of standard template library(STL)?

Answers were Sorted based on User's Feedback



what's the difference between abstract class and concreate class? what's the meaning of s..

Answer / monalisha

In C++ an abstract class is one which defines an
interface, but does not necessarily provide implementations
for all its member functions. An abstract class is meant to
be used as the base class from which other classes are
derived. The derived class is expected to provide
implementations for the member functions that are not
implemented in the base class. A derived class that
implements all the missing functionality is called a
concrete class .

The Standard Template Library, or STL, is a C++ library of
container classes, algorithms, and iterators; it provides
many of the basic algorithms and data structures of
computer science. The STL is a generic library, meaning
that its components are heavily parameterized: almost every
component in the STL is a template.

Is This Answer Correct ?    4 Yes 0 No

what's the difference between abstract class and concreate class? what's the meaning of s..

Answer / dumitru

In C++ an abstract class is a class that contain at least
one pure virtual function ( f()=0; ) and is related at using
this only for inheritance, not for instance an object from
this directly.

The Standard Template Library, or STL, is a C++ library of
container classes, algorithms, and iterators; it provides
many of the basic algorithms and data structures of
computer science. The STL is a generic library, meaning
that its components are heavily parameterized: almost every
component in the STL is a template.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More STL Interview Questions

method overloading means what?

2 Answers   CTS,


what are you now programming Languages C+

1 Answers   HCL,


what is an algorithm in terms of STL?

1 Answers   Lucent, Wipro,


what's the difference between function overloading and function overiding?

5 Answers  


How connect plc and pc through software

0 Answers  






i wanted to know about questions about c,c++ , which is required for placements.... im a fresher

0 Answers   NDS,


What is a list in c++ stl?

0 Answers  


What is the name of your birth place?

0 Answers  


What is Constructor

14 Answers   Angel Broking,


what is the acronym of the term 'C.O.M.P.U.T.E.R' ?

17 Answers   Config Systems, Google, Wipro,


What is C++ could you enplane me please?

1 Answers  


What is stl stack?

0 Answers  


Categories