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 |
Explain rethrowing exceptions with an example?
Can constructor be static in c++?
What is endianness?
What is data types c++?
What do you mean by translation unit?
Does improper inheritance have a potential to wreck a project?
Design a program to input a date from user in the form day/month/year (e.g. 2/6/2000) and report whether it’s a valid date or not. The program should take account of leap years. You will need to know that a leap year is a year that is exactly divisible by 4, except that century years are only leap years if they are divisible by 400.
given unsigned int ui1=3,ui2=7; what are the outputs of a)ui1 & ui2 b)ui1 && ui2 c)ui1 | ui2 d)ui1 || ui2 i also need the justification for the answers thank you
What are static variables?
What are the advantages of using const reference arguments in a function?
What are the vectors in c++?
Can we make any program in c++ without using any header file and what is the shortest program in c++.