Why is it appropriate to refer to a class template as a parameterized type?
What will be an ideal response?
When creating specializations of a class template, it is necessary to provide a type (or possibly several types) to complete the definition of the new type being declared. For example, when creating an "array of integers" from an Array class template, the type int can be provided to the class template to complete the definition of an array of integers.
Computer Science & Information Technology