Computer Science, asked by nabzam971, 11 months ago

Find out how buffers & interrupts are used when sending data to memories such as DvDs and solid state (ex: pen drives)

Answers

Answered by KomalSrinivas
32

Most of the times, the D.M.A. software is used. D.M.A. i.e. direct memory access uses a technique of waiting until the data gets copied in the form of loop and it even interrupts to signify that it is not done as yet.

So the most common method or technique that central processing units apply is that, it puts the data in buffer state and then the D.M.A. is activated and is out to action.

At this point, the central processing unit can even work in the form of a bus master. However to speed up the overall processed the central processing unit can speed up the overall process and chained form or command enhancement can be used.

Answered by lovingheart
36

Let us understand the term “Buffer”. Buffer is a temporary memory, where a data is stored in the buffer memory only for a while.

Interrupt means a signal, where one component send signal to other component, that a particular task is one.

The CPU uses DMA (Direct memory access) to temporarily store some information and when DMA completes operation, it signals to CPU that it has done. In this method, CPU time is efficiently used.

Similar questions