what type of question are asked in thoughtworks pair programming round ?
No Answer is Posted For this Question
Be the First to Post Answer
Can destructor be overloaded?
How long to learn object oriented programming?
What does oop mean in snapchat?
diff between Virtual mathod and abstract method?
What do you mean by inline function?
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
what is the drawback of classical methods in oops?
Explain the advantages of inheritance.
What is inheritance write a program to show use of inheritance?
what is overloading and overriding?
You have one base class virtual function how will call that function from derived class?
Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.