What is a parameterized type?
Answer / 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 |
Explain the difference between new() and malloc() in c++?
Will this c++ program execute or not?
how to create window program in c++.please explain.
Write a String class which has: 1) default constructor 2) copy constructor 3) destructor 4) equality operator similar to strcmp 5) constructor which takes a character array parameter 6) stream << operator
2 Answers HCL, Lehman Brothers, Zoomerang,
Is c++ vector a linked list?
What is the difference between struct and class?
Explain RAII (Resource Acquisition Is Initialization).
How is objective c different from c++?
write a program to add two numbers without using an arithmetic operator.
Difference between an inspector and a mutator
What it is and how it might be called (2 methods).
How should a contructor handle a failure?