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 collections and
what is generics

Answers were Sorted based on User's Feedback



what is collections and what is generics..

Answer / osheen

COLLECTION:
Collection are used for grouping related objects that
allows us to iterate over those objects.

Generics:

Generic means make objects generalise.Generic types are the
types that take other type name to define their own type.

Is This Answer Correct ?    5 Yes 0 No

what is collections and what is generics..

Answer / ashwani kumar

collection in case of memory useful .its size is not
fixed,means the if we want to store data more than its
default size its automatically double its default size.but
in case of normal array we can do through redim also the
memory allocated is new[impact on the performance].

Is This Answer Correct ?    3 Yes 2 No

what is collections and what is generics..

Answer / pushparaj pentakota

collections allows you to enter any type of date without
restriction but with generic we can restrict the user to
enter any type of data.

Is This Answer Correct ?    1 Yes 1 No

what is collections and what is generics..

Answer / ilangkumaran

collections includes of arraylist and hashtables which are
similar to arrays but arrays we cant perform delete and add
operations whereas in collections it is possible some
addmethods are available

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More C Sharp Interview Questions

What is arraylist c#?

0 Answers  


What do you mean by abstract class in c#?

0 Answers  


What is a void c#?

0 Answers  


What is difference between assembly and dll?

0 Answers  


What is desktop example?

0 Answers  


Can an array be null c#?

0 Answers  


What framework is used for performance testing/load testing?

0 Answers   TCS,


what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }

1 Answers   iGate,


Can we maintain state in webservice?

0 Answers  


Explain types of comment in c# with examples

0 Answers  


OOPs concept ?

1 Answers   iGate, MMTS,


What do you mean by delegates and explain different types of delegates?

0 Answers  


Categories