Computer Science, asked by prasaddmebe4909, 1 year ago

What would be the consequences if the Memory Manager and the Processor Manager stopped communicating with each other?

Answers

Answered by Hacket
2
In computer science, a memory leak is a type of resource leak that occurs when a computer program incorrectly manages memory allocations in such a way that memory which is no longer needed is not released. In object-oriented programming, a memory leak may happen when an object is stored in memory but cannot be accessed by the running code.A memory leak has symptoms similar to a number of other problems and generally can only be diagnosed by a programmer with access to the program's source code.

A space leak occurs when a computer program uses more memory than necessary. In contrast to memory leaks, where the leaked memory is never released, the memory consumed by a space leak is released, but later than expected.

Because they can exhaust available system memory as an application runs, memory leaks are often the cause of or a contributing factor to software aging.
Answered by 2008shrishti
0

Answer:

A space leak occurs when a computer program uses more memory than necessary. In contrast to memory leaks, where the leaked memory is never released, the memory consumed by a space leak is released, but later than expected.

Because they can exhaust available system memory as an application runs, memory leaks are often the cause of or a contributing factor to software aging.

Explanation:

Hope this answer will help you.

Similar questions