What is abstraction c++?
No Answer is Posted For this Question
Be the First to Post Answer
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.
What is name hiding in c++?
What is RAII (Resource Acquisition Is Initialization)?
Why is c++ still best?
What is the disadvantage of using a macro?
When does the c++ compiler create temporary variables?
How would you stop a class from class from being derived or inherited?The constructer should not be Private,as object instantiation should be allowed.
Which is better c++ or java?
What is data hiding c++?
What do you mean by translation unit in c++?
What is general form of pure virtual function? Explain?
What are the techniques you use for debugging?