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 |
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?
the first character in the variable name must be an a) special symbol b) number c) alphabet
What is the difference between a declaration and a definition?
What will happen if a pointer is deleted twice?
Is ca high or low level language?
How is data hiding achieved in c++?
What will strcmp("Astring", "Astring"); return a) A positive value b) A negative value c) Zero
When can I use a forward declaration?
Why c++ is not a pure oop language?
What happens when a function throws an exception that was not specified by an exception specification for this function?
What is fflush c++?
How can you prevent accessing of the private parts of my class by other programmers (violating encapsulation)?