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 the difference between set and list?

Answers were Sorted based on User's Feedback



What is the difference between set and list?..

Answer / janet

set stores elements in an unordered way but does not
contain duplicate elements,where as ist stores elements in
an ordered way but may contain duplicate elements.

Is This Answer Correct ?    200 Yes 14 No

What is the difference between set and list?..

Answer / sumit

set-->
when uniqueness is required you need to implement set.
e.g.
HashSet(unOrd,unSort) Fast access, assures no duplicates,
provides no ordering.
LinkedHashSet(Ord,unSort)No duplicates; iterates by
insertion order.
TreeSet(ascending,naturalord)No duplicates ; iterates in
sorted order.

list-->
when ordered list is required you need to implement list.
e.g.
ArrayList(Ord,unSort)Fast iteration and fast random access.
Vector(syncronized)
LinkedList()Good for adding elements to the ends, i.e.,
stacks and queues.

Is This Answer Correct ?    91 Yes 7 No

What is the difference between set and list?..

Answer / may

set stores elements in an unordered way but does not
contain duplicate elements,where as it stores elements in
an ordered way but may contain duplicate elements.

Is This Answer Correct ?    37 Yes 4 No

What is the difference between set and list?..

Answer / krishnareddym. a

When we required uniqueness then we can use set and set
does not allow any duplications but list may contain
duplications set and list both extends collection interface...

Is This Answer Correct ?    22 Yes 6 No

What is the difference between set and list?..

Answer / vinod varma

set is an interface which doesnot allows the duplicate values
where as list is also an interface which allows the
duplicate values and we may not guarantee the order of
elements in set
but we can get the elements from list according to their
indexes. we may not insert the elements into set at the
specific index, but possible in list.

Is This Answer Correct ?    11 Yes 2 No

Post New Answer

More Core Java Interview Questions

Why wait(),notify(),notifyAll() methods defined in Object class althought we are using in only threads.

0 Answers   Mphasis,


Why are functions called methods in java?

0 Answers  


What is the difference between super class & sub class?

0 Answers  


How to create packages in java?

0 Answers  


worst case complexities of Quick sort and Merge sort.

0 Answers   Amazon,


what is the diff b/w arraylist and vector?

6 Answers   Code Genesis, Genesis, Sprintine Labs,


What is substring 1 in java?

0 Answers  


How many bits is a double?

0 Answers  


Under what conditions is an object’s finalize() method invoked by the garbage collector?

0 Answers  


Can we write class inside a class in java?

0 Answers  


What are the concepts of 'OOPS'?

0 Answers   Atos Origin,


Can multiple catch statements be used in exceptions ?

6 Answers   Wipro,


Categories