Answer Posted / beena
A template is a parameterized construct or type containing generic code that can use or manipulate any type. It is called parameterized because an actual type is a parameter of the code body. Polymorphism may be achieved through parameterized types. This type of polymorphism is called parameteric polymorphism. Parameteric polymorphism is the mechanism by which the same code is used on different types passed as parameters.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the difference between an external iterator and an internal iterator? Describe an advantage of an external iterator?
Explain container class.
Is there any difference between int [] a and int a [] in c++?
What is a hash function c++?
What is data binding in c++?
Can create new c++ operators?
What is a constant reference?
How we can differentiate between a pre and post increment operators during overloading?
Why is the function main() special?
What is array give example?
What is pointer with example?
Explain object slicing in c++?
What are the comments in c++?
What is a v-table?
How many static variables are created if you put one static member into a template class definition?