ADS tut 2

ADS tut 2

University

10 Qs

quiz-placeholder

Similar activities

DSA Quiz 4 Set 1

DSA Quiz 4 Set 1

University

10 Qs

DBMS - Hash Indexing

DBMS - Hash Indexing

University

10 Qs

Hashing

Hashing

University

10 Qs

Data Structures: Linked Lists and Hashtables

Data Structures: Linked Lists and Hashtables

11th Grade - University

14 Qs

Rapid Round 1

Rapid Round 1

University

10 Qs

Hashing in Data Structures using C

Hashing in Data Structures using C

University

10 Qs

Hashing

Hashing

University

8 Qs

06 - Hashing #2

06 - Hashing #2

University

15 Qs

ADS tut 2

ADS tut 2

Assessment

Quiz

Computers

University

Hard

Created by

Ms PSGCT

Used 1+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

In simple chaining, what data structure is appropriate?

Singly linked list

Doubly linked list

Circular linked list

Binary trees

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Media Image

A hash table of length 10 uses open addressing with hash function h(k)=k mod 10, and linear probing. After inserting 6 values into an empty hash table, the table is as shown above.


Which one of the following choices gives a possible order in which the key values could have been inserted in the table?

46, 42, 34, 52, 23, 33

34, 42, 23, 52, 33, 46

46, 34, 42, 23, 52, 33

42, 46, 33, 23, 34, 52

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which one of the following hash functions on integers will distribute keys most uniformly over 10 buckets numbered 0 to 9 for i ranging from 0 to 2020?

h(i) =i^2 mod 10

h(i) =i^3 mod 10

h(i) = (11 ∗ i^2) mod 10

h(i) = (12 ∗ i) mod 10

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the time complexity improvement of skip lists from linked lists in insertion and deletion?

O(n) to O(logn) where n is number of elements

O(n) to O(1) where n is number of elements

no change

O(n) to O(n2) where n is number of elements

5.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

The nodes in a skip list may have many forward references. their number is determined

probabilistically

randomly

sequentially

orthogonally

6.

FILL IN THE BLANK QUESTION

20 sec • 1 pt

Media Image

7.

FILL IN THE BLANK QUESTION

45 sec • 1 pt

The size of the hash table is 12. Double hashing is used to resolve collisions. The hash function used is H(k) = k mod 12 The second hash function is: H2(k) = 7 – (k mod 7). What value will be in the hash table at location 4 after the following sequence of insertions 33, 10, 9, 13, 12, 45, 26?

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?