what is the definition of incapsulation
Answers were Sorted based on User's Feedback
Answer / dipraj shahane
Encapsulation is binding code and data together. In Class we
are binding data (member variable) to code (member function).
Class is implementing encapsulation feature.
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / arun
Wrapping up of data and methods in to a single entity is known as encapsulation
| Is This Answer Correct ? | 3 Yes | 0 No |
write a program which best describes polymorphism in real world?
2 Answers CTS, Infosys, NexGen,
what is object slicing
Why it is called runtime polymorphism?
What is polymorphism explain its types?
Example for 4 pillar of oops like, Inheritance,Poly,Abstraction,Encabsulation ?
Which is better struts or spring?
How is exception handling carried out in c++?
4. What do you mean by a prototype? Define analysis prototype
write a program that takes input in digits and display the result in words from 1 to 1000
Definition of Object Oriented Programming in single line?
33 Answers Impact Systems, Q3 Technologies, TCS,
What is friend function?
//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(); }