STL (140)
OOPS (873)
C++ General (2409)
Why multiple inheritance is not possible?
How would perform Pattern Matching in C++?
Is c++ platform dependent?
What is #include sstream?
Will a recursive function without an end condition every quit, in practice a) Compiler-Specific (Some can convert to an infinite loop) b) No c) Yes
Is it possible for a member function to delete the pointer, named this?
What is the difference between #import and #include in c++?
What do you mean by translation unit in c++?
Which bit wise operator is suitable for checking whether a particular bit is on or off?
What is pure virtual function? Or what is abstract class?
Question: Write a program that prints a paycheck. Ask the program user for the name of the employee, the hourly rate, and the number of hours worked. If the number of hours exceeds 40, the employee is paid “time and a half”, that is, 150 percent of the hourly rate on the hours exceeding 40. Be sure to use stepwi se refine ment and break your solution into several functions. Use the int_name function to print the dollar amount of the check.
Explain class invariant.
What are iterators in c++?
Explain register storage specifier.
Is c++ vector dynamic?