c++ is a pure object oriented programming or not?
Answer Posted / baranee
C++ is Oops concept only but not pure. pure concept is JAVA
only.
| Is This Answer Correct ? | 15 Yes | 2 No |
Post New Answer View All Answers
What is pure oop?
Why is abstraction used?
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 highest level of cohesion?
What is oops and its features?
write a program to find 2 power of a 5digit number with out using big int and exponent ?
what are the realtime excercises in C++?
What is the difference between static polymorphism and dynamic polymorphism?
What is the important feature of inheritance?
How do you achieve polymorphism?
What is abstraction in oop with example?
What are constructors in oop?
What is polymorphism oop?
They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?
Can we create object of interface?