What is basic concept of oop?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More OOPS Interview Questions

What is the difference between declaration and definition?

20 Answers   IBS,


what is the difference between inter class and abstract class...?

0 Answers  


how much classes are used in c++

5 Answers  


Can we call a base class method without creating instance?

6 Answers  


write a programe to calculate the simple intrest and compund intrest using by function overlading

0 Answers  






What is the problem with multiple inheritance?

0 Answers  


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

0 Answers  


4. What do you mean by a prototype? Define analysis prototype

1 Answers  


Can private class be inherited?

0 Answers  


Is react oop?

0 Answers  


#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; a.x = 22; int c = a.x; int *b = new int; cout << c; return 0; } option: No output 0 22 -(11) Will not compile

1 Answers   CTS, Wipro,


What are the benefits of polymorphism?

0 Answers  


Categories