-
-
-
-
Do Nothing Constructor
What are Default Constructor and Do Nothing Constructor
-
-
Default Parameter
What is default parameter? Can a overloaded function have a default parameter?
-
Data Encapsulation
Which one of the statements concerning data encapsulation is FALSE? A. Data encapsulation lets the programmer create an object and then provide an interface that other objects can use to invoke the methods provided by that object. B. Programmers can change the internal working of an object, but this may be transparent as long as the interface remains unchanged. C. Data encapsulation works well for...
-
-
C++ File Stream
What is the concept of file stream in C++? How is a file opened and closed in C++?
-
Execute Destructor
When is a destructor executed?
-
Length Conversion Program
Write a program that will read in a length in feet and inches and will output the equivalent length in meters and centimeter. Use at least three functions: one for input, one or more for calculating, and one for output. Include a loop that lets the user repeat this computation for new input values until the user says he wants to end the program. There are meter in a foot, 100 centimeters in a meter,...
-
Deallocation of memory
When we allocates the memory using malloc() and calloc(), it returns pointer pointing to the base address to the allocated memory. But while freeing the memory we call free(pointer) thenHow the operation system knows that how much memory is about to be free.
-
-
-
What does this function do:
What does this function do:string f(const string &x) { return x.empty()? x : f(x.substr(1)) + x[0];}What does this piece of code perform:char *a=...., *b=....;while(*b++ = *a++);
-
-
-
-
-
C++ Interview Questions
Ans