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 a stack? How it can be implemented?
What is exception handling? Does c++ support exception handling?
What are the extraction and insertion operators in c++? Explain with examples.
Write about all the implicit member functions of a class?
In what situations do you have to use initialization list rather than assignment in constructors?
What are the data types in c++?
When one must use recursion function? Mention what happens when recursion functions are declared inline?
How did c++ start?
Write about the retrieval of n number of objects during the process of delete[]p?
Evaluate the following expression as C++ would do :8 * 9 + 2 * 5 a) 82 b) 79 c) 370 d) list
What is the best way to take screenshots of a window with c++ in windows?
How are the features of c++ different from c?
What is the difference between reference and pointer?
Why should we use null or zero in a program?
What does std :: flush do?