This term applies to the process of storing data that someone asks for in the hope that someone else will ask for it again.
A. caching
B. resource availability
C. high availability
D. data backup
Answer: A
You might also like to view...
Which of the following statement about a dual-homed host firewall is true?
a. The automatic routing function has to be enabled so that the firewall can work. b. Systems inside and outside the firewall cannot communicate with each other directly. c. Dual-homed firewall runs on a server with one network interface. d. IP packets from the Internet are routed directly to the internal network.
Processing a graph requires the ability to traverse the graph.
Answer the following statement true (T) or false (F)
What type of algorithm is the following code? i = 0while i < len(myList) - 1: minIndex = i j = i + 1 while j < len(myList): if myList[j] < myList[minIndex]: minIndex = j j += 1 if minIndex != i: swap(myList, minIndex, i) i += 1
A. binary search B. bubble sort C. sequential search D. selection sort
Which of the following CANNOT be contained in a code snippet?
A. an entire program B. code to send an e-mail message C. an If…Then…Else decision structure D. code to draw a circle