What is Hashing and how is it done? Pictorial form?

Answers were Sorted based on User's Feedback



What is Hashing and how is it done? Pictorial form?..

Answer / vivin

A hashing function is a key-to-address transformation, which acts upon a given key to compute the relative position of the key in an array.
A simple hash function
HASH(KEY value)=KEYvalue MOD TABLESIZE

(ex) HASH(92)=92 MOD 10
=2

Here 10 is table size associated with records

Is This Answer Correct ?    10 Yes 0 No

What is Hashing and how is it done? Pictorial form?..

Answer / sanjeevkumar.v

hashing table is used on C-language .first to give the
values and these are divide into 3. the values are
individually divided in the 3. the REMAINDER will be
considered at the TABLE . the columns are in

TABLE--0

TABLE--1

TABLE--2

these are in having hashing table........

pictorial diagram is used on the programming languages
and these are used in the .architecture of the function to
be view

Is This Answer Correct ?    1 Yes 4 No

Post New Answer

More OOPS Interview Questions

why we call c++ is object oriented lanaguage

7 Answers   HCL,


what is a class

6 Answers  


what is overloading

3 Answers   MindCracker,


explain the concepts of oops?

1 Answers  


Write a program to accept a number and to print numbers in pyramid format? for eg:for a no. 5 1 212 32123 4321234 543212345

7 Answers  






What is polymorphism in oops with example?

0 Answers  


explain defference between structure and class with example

1 Answers  


What is a friend function & its advantage?

1 Answers   MIT,


What is a class and object?

0 Answers  


what is static?

4 Answers  


What is oops and why we use oops?

0 Answers  


What is a macro? And how is a macro same as a template?

4 Answers  


Categories