-
Inline functions advantages
What is the inline function and what is the use of inline function?
-
Constructor initialization lists
What is advantage of using Constructor initialization lists?
-
Classes
The copy constructor of class Money is called in which of the following cases?Choose one answer. a. Money amount1;Money amount2(amount 1); b. void func(Money amount);[...]Money amount1;[...]func(amount1); c. Money func();[...]Money amount1 = func(); d. all of the above
-
-
Dead Code
What is dead code? Explain in programmatic way?
Command routing in MDI
What is command routing in MDI
What do you mean by inline function?
The idea behind inline functions is to insert the code of a called function at the point where the function is called. If done carefully, this can improve the application's performance in exchange for increased compile time and possibly (but not always) an increase in the size of the generated binary executables.
Size
c class base
{
public:
virtual void display()
{
cout
Inverse of matrix
Program to find inverse of nth order square matrix?(c++)
Fork () function
How does a process generates Child process using Fork() function.The concept of it.
For example: A process execute the code
fork()
fork()
fork()
Total Number of "child" process created is/are ?Bottom-Up Approach
Why we follow top down approach in C-language and bottom up approach in C++?Explain in detail.
C Coding question on running time program
/*assume contents are sorted*/Public static intbinarySearch(int x,int a[]){int low=0; 0(1)int high=a.length-1; 0(1)int mid; 0(1)while(low>x;while(x!=99){n++; 0(1)sum+=x; 0( n/x)cin>>x;}mean - sum/n;what is the running time?Please help me understand it. The websites are not that helpful to me. Please. Please if you're not that busy can you please answer it with explanations?:) :) :) THANK YOU!!
Function pointer
How to assign function pointer to static function?
Empty declaration of a class holds memory 1 byte
Why empty declaration of a class holds memory 1 byte. Explain briefly?
C++ Type Conversion
Why does 'float' accept 'int' but not 'char'?
Ans