Google News
logo
Data Structures - Quiz(MCQ)
Which of the following concepts make extensive use of arrays?
A)
Caching
B)
Spatial locality
C)
Binary trees
D)
Scheduling of processes

Correct Answer :   Spatial locality


Explanation : Whenever a particular memory location is referred to, it is likely that the locations nearby are also referred, arrays are stored as contiguous blocks in memory, so if you want to access array elements, spatial locality makes it to access quickly.

Advertisement