Linear probing that uses the increment value as a function of the key is called ____.

A. quadratic hashing
B. non-linear hashing
C. key hashing
D. double hashing


Answer: D

Computer Science & Information Technology

You might also like to view...

A(n) ______ TV is an Internet-capable, high-definition television on which you can use the Internet to watch video, listen to the radio, play games, and communicate with others.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

All nodes on a subnet are experiencing network slowness. The administrator suspects an infected computer is on the network and checks if a node is saturating the network. Which of the following tools should be utilized in this situation?

A. Multimeter B. Port scanner C. Protocol analyzer D. IGMP

Computer Science & Information Technology

With the while loop, the body of the loop is ____.

A. always performed at least one time B. performed as long as the conditional expression evaluates to true C. must produce a boolean result D. must be enclosed in curly braces

Computer Science & Information Technology

What would we expect this for loop to do?

for (position = 1 through aList.getLength()) { dataItem = aList.getEntry(position) print(dataItem) }

Computer Science & Information Technology