Answer Posted / arun yadav
A hash table, or a hash map, is a data structure that
associates keys with values. The primary operation it
supports efficiently is a lookup: given a key (e.g. a
person's name), find the corresponding value (e.g. that
person's telephone number). It works by transforming the
key using a hash function into a hash, a number that is
used as an index in an array to locate the desired location
("bucket") where the values should be.
| Is This Answer Correct ? | 17 Yes | 5 No |
Post New Answer View All Answers
How to write an inner join with the where clause in ms sql server?
How to reaname table name without using sp_Rename in sql server..?
What is sql injection and why is it a problem? : sql server security
How do you trace the traffic hitting a sql server?
Distinguish between nested subquery and correlated subquery?
What does executeupdate return?
What is sql collation?
How to create a simple stored procedure in ms sql server?
explain the difference between oracle- sql and sql server sql ? if both are same y we r using 2 sw.s?
Can you tell me some of the common replication dmv's and their use? : sql server replication
Can primary key be a foreign key?
Are resultset updatable?
What is a functions and types in sql server?
What are the grouping functions?
How to create new databases with "create database" statements?