What is Hashing and how is it done? Pictorial form?
Answers were Sorted based on User's Feedback
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 |
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 |
What do you mean by binding of data and functions?
What is polymorphism explain?
How to handle exception in c++, For example in a functions i am assigning memory to some variables and also in next instructions in am dividing one variable also. If this functions generates a error while allocating memory to those variable and also while dividing the variable if i divide by zero then catch block how it will identify that this error has cone from perticular instruction
What do we mean by a hidden argument in a function?
Write a macro for swapping integers
What is abstraction?
IS IT NECESSARY TO INITIALIZE VARIABLE? WHAT IF THE INSTANCE VARIABLE IS DECLARED final ? IS IT NECESSARY TO INITIALIZE THE final VARIABLE AT THE TIME OF THEIR DECLARATION?
What is the difference between declaration and definition?
How many types of access specifier in c# and vb.net?
why we are declare the function in the abstract class even though we are declaring it in Derived class?
What is Iteration Hierarchy? What is what is Object behavioral concept?
What is constructor in oop?