edited by
845 views

2 Answers

1 votes
1 votes
Option A) is correct as , Load Factor = Number of keys in hash table / Capacity

It determines the amount of space in the hash table, if load factor is less it means there is more space in the Hash table .
Answer:

Related questions

0 votes
0 votes
0 answers
1
0 votes
0 votes
1 answer
2
admin asked Apr 1, 2020
914 views
An algorithm is made up pf two modules $M1$ and $M2.$ If order of $M1$ is $f(n)$ and $M2$ is $g(n)$ then the order of algorithm is$max(f(n),g(n))$$min(f(n),g(n))$$f(n) + ...
1 votes
1 votes
2 answers
3
2 votes
2 votes
1 answer
4
admin asked Apr 1, 2020
1,039 views
The height of a binary tree is the maximum number of edges in any root to leaf path. The maximum number number of nodes in a binary tree of height $h$ is $2^{h}$$2^{h-1} ...