-
-
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'?
-
-
-
-
Matrix Operation using Operator Overloading
Write a program for four atrithmetic operations in matrix using operator overloading.
What is abstraction?
Abstraction is of the process of hiding unwanted details from the user.
What is encapsulation?
Packaging an object’s variables within its methods is called encapsulation.
Ans