What is a template?

Answers were Sorted based on User's Feedback



What is a template?..

Answer / yughandhar

templates r used to create generic classes and functions.

Is This Answer Correct ?    7 Yes 0 No

What is a template?..

Answer / ravinandan

Template is used for generic programming. In other words
when you want to write a function or a class type
independent, go for templates.

template<class T>
void fun(T x, T y); // Is a Template function

template<typename T>
class abc{
T m;
}; // Is a Class Template

template<class T>
class abc{
T m;
}; // Is a Class Template

Is This Answer Correct ?    6 Yes 0 No

What is a template?..

Answer / p suresh kumar

The template specifies a set of parameterized classes or
functions.

Is This Answer Correct ?    7 Yes 3 No

What is a template?..

Answer / yughandhar

Templates is one of the features added to c++ recently.a
template can be considered as a kind of macro.
Templates are mainely used for creating the generic classes

Is This Answer Correct ?    3 Yes 0 No

What is a template?..

Answer / debika mohapatra

Templates is one of the features added to c++ recently.a
template can be considered as a kind of macro.

Is This Answer Correct ?    2 Yes 0 No

What is a template?..

Answer / rakesh kumar

Templates is one of the features added to c++ recently.a
template can be considered as a kind of macro.
Templates are mainely used for creating the generic classes

Is This Answer Correct ?    1 Yes 1 No

What is a template?..

Answer / yughandhar

template is a kind of macro to create generic classes and
generic functions to do a specific task

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More OOPS Interview Questions

why reinterpret cast is considered dangerous?

0 Answers   TCS,


What is a class in oop?

0 Answers  


What is difference between data abstraction and encapsulation?

0 Answers  


Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)

0 Answers   HCL,


What is extreme programming?

2 Answers  






ambiguity regulation of multiple inheritance with example.

1 Answers  


what is virtual function?

3 Answers  


What are the important components of cohesion?

0 Answers  


Why is there no multiple inheritance?

0 Answers  


why function overloading is not called as pure polymorphism?

2 Answers  


What is multiple inheritance?

9 Answers   TCS,


which are the 4 members functions in c++ objects that can either be declared explicitly by programmer or implementation if nt available.

4 Answers  


Categories