define oops with class and object
Answer Posted / rajganesh
oops is new approch to hantel complex program.oops mean's
object oriented programming
| Is This Answer Correct ? | 2 Yes | 10 No |
Post New Answer View All Answers
What is polymorphism and types?
What are the 3 pillars of oop?
Who invented oop?
What are two types of polymorphism?
Why multiple inheritance is not possible?
String = "C++ is an object oriented programming language.An imp feature of oops is classes and objects".Write a pgm to count the repeated words from this scenario?
What is an advantage of polymorphism?
What is protected in oop?
Why is oop useful?
What does and I oop mean?
Can we create object of interface?
what type of question are asked in thoughtworks pair programming round ?
What is the point of polymorphism?
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
Why do pointers exist?