Difference between Encapsulation and Abstraction

Answers were Sorted based on User's Feedback



Difference between Encapsulation and Abstraction..

Answer / balbir

encapsulation:wraping of data and method into single unit.
e.g:

public class Test {
private int id;
private int roll;

public void method(int i,int j){
id = i;
roll = j;
System.out.println("===id==="+id);
System.out.println("===roll==="+roll);
}
public static void main(String args[])
{
Test t =new Test();
t.method(100,200);
}
}

in above example privatevariable wrap with public
method,this is encapsulation.

Abstraction:hiding the implementation details from the
external users.
e.g: electric switch board is available for end user
without knowing the implementation details.means end user
not bother about what is the manufactored items inside th
switch board.this is called abstraction.

Is This Answer Correct ?    12 Yes 2 No

Difference between Encapsulation and Abstraction..

Answer / malleswari

Abstract is provide necessary properties and operation of
an entity.Encapsulation is binding properties and operation
to an entity.

Is This Answer Correct ?    5 Yes 1 No

Difference between Encapsulation and Abstraction..

Answer / prashant

abstrction in simple language is making complex thing simple
to use by using small and simple controls.
example:- as we know that the car is made up of many
complicated parts.but without bothering the internal details
of car we can drive using accelerator,break and clutch.in
this example accelarator,break and clutch are the small
controls,which makes possible to operate compicated car


encasulation is a method of defining data members and method
together within a class.

Is This Answer Correct ?    1 Yes 0 No

Difference between Encapsulation and Abstraction..

Answer / srikanth

Data abstraction is one part of the data
encapsulation....that means data hiding...by achieving data
abstraction by
1)group of similar variables and methods is called
class...so one class variables and methods are hide to
another....
2)by using access specifiers

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Core Java Interview Questions

Write a program to reverse a number in java?

0 Answers  


Can an object?s finalize() method be invoked while it is reachable?

2 Answers  


Why charat is used in java?

0 Answers  


How many functional interfaces does java 8 have?

0 Answers  


What are Inner classes?

4 Answers  






what are different ways in which a thread can enter the waiting state? : Java thread

0 Answers  


What is try-with-resources in java?

0 Answers  


How java enabled high performance?

0 Answers  


I have one Shopping cart application, i that i have selected some items, while clicking submit button by mistake i have clicked twice or trice, that time items are selected twice or trice. Actually i want only one copy of items but its selected twice or trice. So how can we avoid this problem?

2 Answers   Honeywell,


Difference between String and String Buffer?

3 Answers  


Can a list be null in java?

0 Answers  


In the first round, there are 30 aptitude and 30 java questions. We are suppose to finish both the papers within 60 minutes. I cleared this round. Next was test for programming skills. In this section, Some 7 n's were asked. 1. What is the difference b/w sleep(1000) and wait(1000) 2. what is the diff b/w static block and static function? 3. Write a program to validate IP address using string tokenizer. 4. Write a program to create singleton class 5. write a function to reverse the string 6. Write a prog to print prime nos upto n. EX: If n=9, It shld print 1,2,3,5,7 7. One program on collections- Write a program to print no. of times a number is repeating in an array. EX- {1,3,1,2,5,7,3,7,34,3,8,3} It should print: 1- 2 times 3- 4 times and so on 7. Write a func to print fibonocci series After this I had technical interview, which went on for. 60 mins or so. There were qn's about multi threading, Exception handling and collection classes. Knowledge about collections was very important for the post I was interviewed for.

1 Answers   Huawei,


Categories