answersLogoWhite

0


Best Answer

Internal hashing mainly used for internal file, it is particularly an array of records. External hashing used for file disk

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Difference between Internal hashing n external hashing?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are the difference between static and dynamic hashing in DBMS?

Search operation in static hashing is time consuming, but in dynamic hashing it is not.


What are the two names of the most popular hashing algorithms?

Both SHA-1 and MD5 are good hashing algorithms. The primary difference between the two is speed; MD5 is faster to process than SHA.


What are different types of hashing techniques are there in DBMS?

there are 2 types of hashing techniques 1- Static hashing 2-Dynamic hashing


What is Homomorphic Hashing?

Homomorphic Hashing is a algorithm technique used for verifying data.


What is hashing function in data structure?

If you read up on hashing, why hashing is done, what are its uses. Then you will be able to answer your own question. More to the point you will have studied the material that your homework question is intended to make you study. It is educational.


Why do you use hashing and not array?

Hashing provides a method to search for data.Hashing provides a method to search for data.Hashing provides a method to search for data.Hashing provides a method to search for data.


Another term for an icv is?

Hashing.


Is double hashing a rehashing?

ya it it


What actors and actresses appeared in Hashing It Out - 1996?

The cast of Hashing It Out - 1996 includes: Tony Campolo as Host Bill Turpie as himself


Explain the distinction between closed an open hashing discus the relative merits of each technique in database application?

Closed hashing involves storing all key-value pairs directly in the hash table, while open hashing involves using separate data structures (such as linked lists) to handle collisions. Closed hashing typically has better memory management and faster access times for non-colliding keys, while open hashing can handle a larger number of collisions without needing to resize the hash table. In database applications, closed hashing may be preferred for smaller datasets with minimal collisions, while open hashing may be more suitable for handling large volumes of data with frequent collisions.


Explain the distinction between closed an open hashing Discuss the relative merits of each technique in database application?

A hash table is where data storage for a key-value pair is done by generating an index using a hash function. Open Hashing (aka Separate chaining) is simpler to implement, and more efficient for large records or sparse tables. Closed Hashing (aka Open Addressing) is more complex but can be more efficient, especially for small data records.


What is hashing in Java?

Creating a Integer out of an object is called hashing. Hashing is commonly used in HashTable, HashMaps and HashSet. For instance you have Alex John Peter Hashing on each value would generate something like 123455 Alex 123344 John 123987 Peter when put in hashtable or hashset would be quicker to find each piece of information. There are many algorithms available with java to get the hash of an object.