what is encapulation?
Answers were Sorted based on User's Feedback
Answer / yohesh rasal
The wrapping up of data and function into a single
unit(called class) is known as encapsulation.
The data is not accessible to the out side word,and only
those functions which are wrapped in the class can access
it.These function provide the interface between the object
data and the program.This insulation of data from direct
access by the program is called data hiding or information
hiding.
| Is This Answer Correct ? | 32 Yes | 1 No |
Answer / guest
The wrapping of data and its member functions into a single
unit is called encapsulation.
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / ashish jadhav
hiding non essential details is called encapsulation.
preventing the access of non essential details.
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / hetal
The wrapping of data and its member functions into a single
unit is called encapsulation.
| Is This Answer Correct ? | 0 Yes | 0 No |
what is radio button? Plz show code this! how will select radio buttons to go next window Forms? Supose o radio button1 o radio button2 o radio button3 o radio button4 how will coding this? Plz explain this!
2. What do you mean by DHCP?
What is meant by SQL,PL/SQL,SQL PLUS? Is there any differnece between them?
what is the main usage of an abstract keyword?please follow the program class A { void display() { System.out.println("hai"); } void print() { } } class B extends A { void print() { System.out.println("Hello"); } } In this program i was gives the implementation of print() according to my requirements in subclass.And there is no definition in superclass then why we can use abstract keyword before a method that i want to gives definition in other classes,is any mistakes in the above usage of method?
What is web.configuration? how is it work? & wht is use this?
What is the use of Differ interface check box in Ship confirm?
Write a program to show polymorphism.
code for connection from windows forms to sql server
1.Describe about your project?
what are the topics choosen for jam round for interviews
Write 5 differences between Memory Reference Instruction and Register Reference Instruction.
can we extend a class having only one parameterised constructor.Suggest the process to do it.