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 differnce between Array and Hash Table?

Answers were Sorted based on User's Feedback



What is the differnce between Array and Hash Table?..

Answer / pramodgupta20

1.Array can store same type of data While Hash Table can
store different type of data.

2) Hash table store data as name,value pair. while in array
only value is store.

3) to access value from hash table, you need to pass name.
while in array, to access value , you need to pass index
number.

Is This Answer Correct ?    70 Yes 1 No

What is the differnce between Array and Hash Table?..

Answer / mohit jethva

Array can not contain diffrent type of object where in hash table you can store it.

Is This Answer Correct ?    15 Yes 2 No

What is the differnce between Array and Hash Table?..

Answer / ankit,abhishek

array is the collection of similar datatype while hashtable
is collection of different data type.

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More C Sharp Interview Questions

How do I get deterministic finalization in c#?

0 Answers  


what is CSharp

6 Answers  


What is for loop in c#?

0 Answers  


What are the 3 different types of arrays?

0 Answers  


What are the fundamental principles of oo programming?

0 Answers  


Define an escape sequence, name few strings in escape sequence?

0 Answers  


Consider the following pieces of C# code: a. interface I1 {/*......*/} interface I2 {/*......*/} struct Point : I1,I2 {/* ..... */} b. struct Book{ int bookId; struct Book b; } c. using M=Mystruct; struct MyStruct{ int id; } class MyClass{ static void Main(string[] args){ M m = new M(); } } d. struct Sample{ Sample ref x; } Which of the above are correct? Choose one of the options below. a, c and d are right a only right a and c are right d only wrong None of the listed options

3 Answers  


What is the use of console readkey in c#?

0 Answers  


What is array collection?

0 Answers  


Method1() { int a=0, b=0, c=0; Monitor.Enter(this) c = 12; b = 3; a = c/b Moniter.Exit(this) } Method1() { int a=0, b=0, c=0; c = 12; b = 3; lock(this){ a = c/b } } Choose correct answer. a. Upon completion, Method1 and Method2 release the lock b. Upon Comletion, Method1 release the lcok and Method2 not. c. Upon Completion, Method2 release the lock and Method1 not. d. Upon Completion, neither Method1 or Method to release the lock.

1 Answers  


WHAT IS THE EXACT USE OF INTERFACE(DONT TELL USE FOR MULTIPLE INHERITANCE)

5 Answers   eXensys,


Are private class-level variables inherited?

5 Answers   HCL, Siebel Systems, Visual Soft,


Categories