what are the disadvantages of C++?
Answer Posted / mandoos
persistance
| Is This Answer Correct ? | 77 Yes | 43 No |
Post New Answer View All Answers
What is the fundamental idea of oop?
What is polymorphism and its types?
What is the difference between abstraction and polymorphism?
Can abstract class have normal methods?
Is data hiding and abstraction same?
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
Please send ford technologies placement paper 2 my mail id
What are objects in oop?
How does polymorphism work?
What are the advantages of polymorphism?
What do you mean by overloading?
• What are the desirable attributes for memory managment?
Explain the concepts involved in Object Oriented programming.
Can an interface inherit a class?
What is encapsulation in simple terms?