Top answers


Explain the difference between the cache memory and the buffer.

The cache memory aims to reduce the memory access time and thus increase your computer speed by storing frequently accessed data. A buffer, such as a printing buffer, is just a temporary memory storage that ...
CF
Answered by Cesar F. Computing tutor
9453 Views

What is the difference between data verification and data validation?

Data verification is a way of ensuring the user types in what he or she intends, in other words, to make sure the user does not make a mistake when inputting data. An example of this includes double entry of...
CF
Answered by Cesar F. Computing tutor
77005 Views

Describe the process of a binary search.

A binary search requires a ordered list. The search first finds the data entry in the middle of the list, and checks whether it is larger or smaller than the data it is looking for. It then removed half the ...
MT
Answered by Michael T. Computing tutor
3632 Views

Describe a queue data structure.

A queue is a FIFO (First In First Out) data structure. Analogous to a production line, the first item in the list will be the first to be removed, the second the second and so on.
MT
Answered by Michael T. Computing tutor
3277 Views

Describe a stack data structure.

A stack is a LIFO (Last In First Out) data structure. Analogous to a stack of plates, every new data entry is placed (or pushed) onto the top of the stack, and to get the the data below it, you must first re...
MT
Answered by Michael T. Computing tutor
3877 Views