Practice Problems on Hashing

Practice Problems on Hashing

University

7 Qs

quiz-placeholder

Similar activities

Hashing

Hashing

University

6 Qs

Hash Table

Hash Table

University

8 Qs

Hashing

Hashing

University

8 Qs

ADS tut 2

ADS tut 2

University

10 Qs

cns 4

cns 4

University

5 Qs

Test quiz

Test quiz

University

3 Qs

Seatwork HASH (Data Structure)

Seatwork HASH (Data Structure)

University

10 Qs

DSA Quiz 2

DSA Quiz 2

University

10 Qs

Practice Problems on Hashing

Practice Problems on Hashing

Assessment

Quiz

Computers

University

Easy

Created by

Mohamed Ibrahim

Used 11+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Insertion of keys into hash table using linear probing as collision resolution technique – In linear probing technique, collision is resolved by searching linearly in the hash table until an empty location is found. 

The keys 12, 18, 13, 2, 3, 23, 5 and 15 are inserted into an initially empty hash table of length 10 using open addressing with hash function h(k) = k mod 10 and linear probing. What is the resultant hash table? 

Media Image
Media Image
Media Image
Media Image

2.

OPEN ENDED QUESTION

3 mins • 1 pt

What is the complexity of finding order information, such as max, min or range from a hash table?

Evaluate responses using AI:

OFF

3.

OPEN ENDED QUESTION

5 mins • 1 pt

Given the input {4371, 1323, 6173, 4199, 4344, 9679, 1989}, a fixed table size of 10, and a hash function H(X) = X mod 10, show the resulting

a.       Linear probing hash table

b.      Quadratic probing hash table

c.       Separate chaining hash table

Evaluate responses using AI:

OFF

4.

OPEN ENDED QUESTION

3 mins • 1 pt

Explain how deletion is performed in both probing and separatechaining hash tables.

Evaluate responses using AI:

OFF

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the appropriate probing table size if the number of items inthe hash table is 10? Assume 0.7 load factor.

10

15

20

25

6.

OPEN ENDED QUESTION

3 mins • 1 pt

A hash table needs to be resized if load factor of a table exceeds 0.7. What are the important things to do when resizing a hash table?

Evaluate responses using AI:

OFF

7.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

In this type of questions, hash values are computed by applying given hash function on given keys. 

Given the following input (4322, 1334, 1471, 9679, 1989, 6171, 6173, 4199) and the hash function x mod 10, which of the following statements are true? (GATE CS 2004) 

i. 9679, 1989, 4199 hash to the same value 

ii. 1471, 6171 hash to the same value 

iii. All elements hash to the same value 

iv. Each element hashes to a different value 

i only 

ii only 

i and ii only 

iii or iv