answersLogoWhite

0


Best Answer

registers, level 2 cache , level 1 cache, ram

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What sequences lists the speed of memory from the fastest to the slowest?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What Linked list uses.type of memory allocation?

Linked lists use dynamic memory allocation (also called "heap memory allocation", as the linked list is stored in heap memory).


Which is preferred for writing a Merge Sort routine contiguous or linked memory?

Linked memory because its very useful primarily when the lists to be sorted are very large and the size of data to be moved is small.


If you have bad memory how can you boost your memory?

Rehearsing/repeating information is a good way to improve your memory. Mnemonics such as ROYGBIV (Richard Of York Gave Battle In Vain) to help remember lists can be useful. ROYGBIV is used to recall the order of the colours of the spectrum.


What is the fastest eater in the world?

According to research undertaken at Vanderbilt University, Texas, the star-nosed mole is the fastest eater among mammals. See the link below for further details and other lists of record-breaking things and creatures.


Can the auditory code used in STM help explain why people have a slightly better memory for random lists of seven digits than for random lists of seven letters?

Theres only 10 digits but 26 letters. maybe that's y?


Which Task Manager tab lists system services and other processes associated with applications together with how much CPU time and memory the process uses?

processes


What tab of Task Manager lists system services and other processes associated with applications together with how much CPU time and memory the process uses?

Processes


Which Task Manager tab lists system services and other processes associated with applications together with how much CPU time memory the process uses?

processes


What does ipcs command do in unix?

It lists the contents of several ipc queues, including semaphores, shared memory segments, etc. It can also remove items from these queues.


What is the purpose of memory drum in psychology?

The memory drum was a standard method for presenting paired associate and serial syllable lists to participant of psychological studies of memory. A memory drum is a piece of laboratory apparatus used to present stimuli in a controlled manner in memory experiments before the advent of computers. Items to be learnt appeared one at a time in the aperture of the drum as it was rotated, either by the experimenter or laterly by timed inputs from a motor.


What are the 4 types of legislative lists in India?

Union Lists for central govt. State lists for state govt. concurrent lists for state and union residuary lists for lists that do NT come in the other 3 lists


What are the advantages of linked list over arrays?

# Linked lists do not need contiguous blocks of memory; extremely large data sets stored in an array might not be able to fit in memory. # Linked list storage does not need to be preallocated (again, due to arrays needing contiguous memory blocks). # Inserting or removing an element into a linked list requires one data update, inserting or removing an element into an array requires n (all elements after the modified index need to be shifted).