What are differences between Array list and Hash table? Sumit Kesarwani 20-Nov-2014 1553 1 Answers Last updated:9/15/2020 8:59:02 PM
Sumit Kesarwani 20-Nov-2014 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.
Sumit Kesarwani
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.