What is the most common mistake on c++ and oo projects?
No Answer is Posted For this Question
Be the First to Post Answer
Please explain the reference variable in c++?
Give a very good method to count the number of ones in a "n" (e.g. 32) bit number.
class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected
What is anonymous object in c++?
Which recursive sorting technique always makes recursive calls to sort subarrays that are about half size of the original array?
What is purpose of abstract class?
Are strings immutable in c++?
Explain the difference between static and dynamic binding of functions?
Explain the auto storage classes in c++.
What is namespace std; and what is consists of?
What is the difference between shallow copy and deep copy?
What is the iunknown interface?