what is difference between colection and collections?

Answers were Sorted based on User's Feedback



what is difference between colection and collections?..

Answer / upendra sharma

collection is interface but collections is class

Is This Answer Correct ?    2 Yes 0 No

what is difference between colection and collections?..

Answer / pavan kumar

collection is an interface to represent a group of individual object as a single entity.where as collections is an utility class to define several utility methods for collection implemented class objects

Is This Answer Correct ?    1 Yes 0 No

what is difference between colection and collections?..

Answer / zaheer ahmed

"You can so easily mistake "Collections" for "Collection"—be careful.
Keep in mind that Collections is a class, with static utility methods, while Collection
is an interface with declarations of the methods common to most collections
including add(), remove(), contains(), size(), and iterator()"

Reference:
Mc Graw Hill - SCJP Sun Certified Programmer for Java 6 Exam 310-065 (2008)Page 559

Is This Answer Correct ?    1 Yes 0 No

what is difference between colection and collections?..

Answer / nirmal kanna s

The Collections class is a utility class having static methods for doing operations on objects of classes which implement the Collection interface. For example, Collections has methods for finding the max element in a Collection.

The Collection interface defines methods common to structures which hold other objects. List and Set are subinterfaces of Collection, and ArrayList and HashSet are examples of concrete collections.

Collection : The root interface of Java Collections Framework.

Collections : A utility class that is a member of the Java Collections Framework.

Is This Answer Correct ?    1 Yes 0 No

what is difference between colection and collections?..

Answer / devraj

Collection is an root interface for collection framework and
implemented by collection classes like List,Set ...etc
Whereas Collections is class which contains static methods
to operate on collection classess
EX:
List l=New ArrayList();
l.add("dev");
l.add("raj");
l.add("dev");
l.add("raj");
l.add("dev");
l.add("raj");
now i want to know no of dev in List
like fallowing
System.out.println(Collections.frequency(l,"dev"));

Is This Answer Correct ?    1 Yes 0 No

what is difference between colection and collections?..

Answer / sanjay

Collection is an interface while Collections is a utility class.

Is This Answer Correct ?    1 Yes 0 No

what is difference between colection and collections?..

Answer / umesh kumar samal

Collection
-----------
Collection is a interface these hold all sub interface like set ,list,map that is like herichy and to in one root
Collections
-------------
Collections is a class user property these are using in all collection class in sorting the element in a proper order
Collections.sort(obj ref);

Is This Answer Correct ?    1 Yes 0 No

what is difference between colection and collections?..

Answer / haribabu kommi

collections is an Utility class.collection is an interface
which implemented by all other interfaces like set,map,list..

Is This Answer Correct ?    1 Yes 1 No

what is difference between colection and collections?..

Answer / vijay bhupathi

Collections is a utility class having static methods(ex.sort).
Collection is an interface which Set,List and Queue
extend.(just extend,there are no direct implementations of
Collection)

Is This Answer Correct ?    0 Yes 0 No

what is difference between colection and collections?..

Answer / rajyalakshmi vedapalli

collection is a interface and collections are utility
classes and the collections are the member in
collectionsframework(readymade datastructure)

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

describe synchronization in respect to multithreading? : Java thread

0 Answers  


What is meant by object oriented programming – oop?

0 Answers  


What do you mean by platform independence?

0 Answers  


How we can run a jar file through command prompt in java?

0 Answers  


I was asked to draw the class diagram for the below scenario which should obey OOPS concept. A Portal is to be developed for a school , which has 3 main divisions viz , Education , Admin & Trust. Each division has 2 sub divisions Kinder Garden & Higer Secondary.

3 Answers   Amtek, Huawei,






What is a java predicate?

0 Answers  


What is primitive array?

0 Answers  


Explain the Propertie sof class?

0 Answers  


A abstract class extending an abstract class.Super class has both abstract and non-abstract methods.How can we implement abstract and non-abstract mehtods? Explain with snippet

3 Answers  


What is difference between == and === in js?

0 Answers  


What is the history of java?

0 Answers  


Describe what a thread-local variable is in java?

0 Answers  


Categories