You can prepare effectively for Computer Science Engineering (CSE) GATE Computer Science Engineering(CSE) 2027 Mock Test Series with this dedicated MCQ Practice Test (available with solutions) on the important topic of "Test: Graphs & Hashing- 2". These 10 questions have been designed by the experts with the latest curriculum of Computer Science Engineering (CSE) 2026, to help you master the concept.
Test Highlights:
Sign up on EduRev for free to attempt this test and track your preparation progress.
The average search time of hashing, with linear probing will be less if the load factor
Detailed Solution: Question 1
A hash table can store a maximum of 10 records. Currently there are records in locations 1, 3, 4, 7, 8, 9, 10. The probability of a new record going into location 2, with a has function resolving collisions by linear probing is
Detailed Solution: Question 2
Consider a hashing function that resolves collision by quadratic probing. Assume the address space is indexed from 1 to 8. Which of the following locations will never be probed if a collision occurs at position 4?
Detailed Solution: Question 3
A has table has space for 100 records. What is the probability of collision before the table is 10% full?
Detailed Solution: Question 4
A hash function randomly distributes records one by one in a space that can hold x number of records. The probability that the mth record is the first record to result in collision is
Detailed Solution: Question 5
In the given binary tree, using array (the array starts from index 1), you can store the node 4 at location,

Detailed Solution: Question 6
A binary tree in which every non-leaf node has non-empty left and right subtrees is called a strictly binary tree. Such a tree with 10 leaf nodes
Detailed Solution: Question 7
Detailed Solution: Question 8
The center of the graph in above questions is the node labeled
Detailed Solution: Question 9
In which of the following cases, linked list implementations of sparse matrices consumes the same memory space as the conventional way of storing the entire array?
(Assume all data-types need the same amount of storage.)
Detailed Solution: Question 10