Differentiate between a template class and class template?
Answer / beena
Template class:
A generic definition or a parameterized class not instantiated until the client provides the needed information. It’s jargon for plain templates.
Class template:
A class template specifies how individual classes can be constructed much like the way a class specifies how individual objects can be constructed. It’s jargon for plain classes.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between the indirection operator and the address of oper-ator?
When can you tell that a memory leak will occur?
Draw a flow chart and write a program for the difference between the sum of elements with odd and even numbers. Two dimensional array.
What are pointer-to-members in C++? Give their syntax.
Is map sorted c++?
What parameter does the constructor to an ofstream object take?
What header file is needed for exit(); a) stdlib.h b) conio.h c) dos.h
What are references in c++? What is a local reference?
List the types of polymorphism in c++?
What is the keyword auto for?
Do we have private destructors?
When should you use global variables?