Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What is meant by Encapsulation? Can you write a class to
explain encapsulation?

Answer Posted / srinu

Encapsulation=DataHidding+Abstraction is called
Encapsulation is called Encapsulation

EX:-
public class A
{
private String name;
private int age;
publiic setName(String name)
{
this.name=name;
}
public String getName()
{
return name;
}
public setAge(int age)
{
this.age=age;
}
public int age()
{
return age;
}
}

Is This Answer Correct ?    6 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the purpose of sizeof operator?

1039


Explain the use of sublass in a java program?

1007


Can we declare a static variable inside a method?

983


What is space character in java?

1086


Explain the importance of finally over return statement?

1028


Can we override protected method in java?

1037


Write a program in java to create a doubly linked list containing n nodes.

935


What is the difference between post and put?

1039


How you can force the garbage collection?

972


Explain the difference between static and dynamic binding in java?

1049


What are different types of control structures?

961


Explain method local inner classes ?

1017


why using interface interface ?

2023


how to prepare for IT Officers Interview in Banks

1956


What does math floor () do?

952