Hashing

Hashing

University

8 Qs

quiz-placeholder

Similar activities

U1 DDL

U1 DDL

University

10 Qs

Intro to Databases

Intro to Databases

12th Grade - University

12 Qs

Q10 - Info Mgt

Q10 - Info Mgt

University

10 Qs

ER Diagram (ERD)

ER Diagram (ERD)

University

10 Qs

DES- Encryption

DES- Encryption

University

8 Qs

Java Mix

Java Mix

University

10 Qs

Database Design & Development SQL 2

Database Design & Development SQL 2

University

12 Qs

Injection Part 2

Injection Part 2

University

10 Qs

Hashing

Hashing

Assessment

Quiz

Computers

University

Hard

Created by

Ramlah .mailok

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a hash table?

A hash table is a type of table used for storing hash functions.
A hash table is a data structure that stores key-value pairs.
A hash table is a type of table used for storing hash browns.
A hash table is a data structure that stores only keys, not values.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If several elements are competing for the same bucket in the hash table, what is it called?

Diffusion

Replication

Collision

Duplication

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Let consider a list of numbers (34, 16, 2, 93, 80, 77. 51) and table size is 10. What is the order of elements in the hash table?

null, null, 77, 16, null, 34, 93, 2, 51, 80

77, 16, 34, 93, 2, 51, 80

80, 51, 2, 93, 34, null, 16, 77, null, null

80, 51, 2, 93, 34, 16, 77

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider a hash table with 10 slots and the collisions are linear probing. The following keys are inserted in the order: 15, 2, 1, 5, 20, 31, 12, 21, 17, 34.

20, 31, 2, 1, 12, 15, 5, 17, 21, 34

20, 1, 12, 31, 34, 5, 15, 21, 17, 2

20, 1, 2, 31, 12, 15, 5, 21, 17, 34

20, 31, 2, 1, 34, 15, 5, 21, 17, 12

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If every item of the list maps to unique index in the hash table, the hash function is called ____________.

hash free table

collision table

collision free table

perfect hash table

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If the hash function is h(key) = key % 5, so for which of the pair of values, the Collison will take place?

15 and 14

12 and 2

1 and 10

11 and 22

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which the following technique is not open addressing for solve collisions?

Linear probing

quadratic probing

chaining

rehashing

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following hash functions is most likely to cause clustering in a hash table?

hash(key) = key % size_table

hash(key) = key / size_table

hash(key) = key

hash(key) = key * size_table