What is the difference between Hash Table and Arrays?
Answer Posted / navin chandra pandit
Hash table & Arrays both are collection but the main diff. is
that- Hash Table follows hashing technique, means it has two
parts-one is hash code while second is value corresponds to
the hash code. To access a value from hash table, we use the
hash code. While array has only value part. To access a
value from array, we use index no. generally.
Is This Answer Correct ? | 42 Yes | 4 No |
Post New Answer View All Answers
What is the difference between “finalize” and “finally” methods in c#?
What are c# collections?
What does addressof operator do in background ?
What is the reason behind the invention of c#?
Can we write class inside a class in c#?
Is it possible to have different access modifiers on the get/set methods of a property in c#?
Which is faster dictionary or hashtable?
Can I do things in il that I can't do in c#?
What is .net c#?
Is c# and c same?
write a C# Program add two matrix ?
Can you use all access modifiers for all types?
Explain About delegates
What is get set in c#?
What is difference between yielding and sleeping?