What is an adaptor class or Wrapper class?
Answer / beena
A class that has no functionality of its own. Its member functions hide the use of a third party software component or an object with the non-compatible interface or a non- object- oriented implementation.
| Is This Answer Correct ? | 0 Yes | 0 No |
Define precondition and post-condition to a member function?
What do you mean by function and operator overloading in c++?
What is implicit pointer in c++?
What are the advantages of using pointers in a program?
What is long in c++?
1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v
What are all predefined data types in c++?
What are different types of loops in c++?
What methods can be overridden in java?
write asingle linked list which read from two list & the do the following 1 sort the prime & nonprime num (prime should be less tn nonprime) 2 each node has a prime num followd by nonprime 3 add a new node into its sutable plce 4 erase the most three duplicated non prime num 5 find the least duplicated prime num
What is type of 'this' pointer? Explain when it is get created?
Differentiate between a template class and class template?