Why is c++ called oops?



Why is c++ called oops?..

Answer / Vinay Pratap Singh Chauhan

C++ is often jokingly referred to as 'OOPS' which stands for 'Object-Oriented Programming System', because many programmers believe that C++ makes it easy to create programs that require an enormous amount of memory and take a long time to compile, ultimately leading to the exclamation 'Oh, One More Preprocessor Symbol!'

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

Why for local variables the memory required to hold the variable is allocated from the program stack and for new its allocated from the heap?

1 Answers  


the first character in the variable name must be an a) special symbol b) number c) alphabet

1 Answers  


What is the difference between a declaration and a definition?

1 Answers  


What will happen if a pointer is deleted twice?

1 Answers   Agilent, HAL,


Is ca high or low level language?

1 Answers  


How is data hiding achieved in c++?

1 Answers  


What will strcmp("Astring", "Astring"); return a) A positive value b) A negative value c) Zero

1 Answers  


When can I use a forward declaration?

1 Answers  


Why c++ is not a pure oop language?

1 Answers  


What happens when a function throws an exception that was not specified by an exception specification for this function?

1 Answers  


What is fflush c++?

1 Answers  


How can you prevent accessing of the private parts of my class by other programmers (violating encapsulation)?

1 Answers  


Categories