top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What are differences between Array list and Hash table?

+1 vote
160 views
What are differences between Array list and Hash table?
posted Feb 9, 2015 by Shivaranjini

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

D/F between ArrayList and Hash table

1) Hash table store data as name, value pair. While in array only value is store.
2) To access value from hash table, you need to pass name. While in array, to access value, you need to pass index number.
3) you can store different type of data in hash table, say int, string etc. while in array you can store only similar type of data.

answer Feb 10, 2015 by Manikandan J
...