What is the expansion of OOPS?
Answers were Sorted based on User's Feedback
Answer / rehman memon
OOP stands For Object Oriented Programming
| Is This Answer Correct ? | 32 Yes | 15 No |
Answer / pabcet mca terrors
Object Orientated Programming Structure.
| Is This Answer Correct ? | 4 Yes | 2 No |
Have you ever used threads?
what is difference between String s=new String("vali"); String s="vali"
When a private constructer is being inherited from one class to another class and when the object is instantiated is the space reserved for this private variable in the memory??
Finding of the 4 larger (bigger) numbers from the list like{1245,4587,2145,1163,29987,65783.....}
What is a macro? And how is a macro same as a template?
what are the ways in which a constructors can be called?
//what is wrong with the programme?? #include<iostream.h> template <class first> class dd { first i; public: void set(); void print(); }; void dd< first>:: set() { cin>>i; } void dd< first>::print() { cout<<"\n"<<i; } void main() { dd <char>g; g.set(); g.print(); }
Describe these concepts: Polymorphism, Inheritance and Abstraction.
What is the difference between a mixin and inheritance?
Explain virtual inheritance?
Why is polymorphism needed?
write a program that takes input in digits and display the result in words from 1 to 1000