answersLogoWhite

0

In contiguous allocation there is no overhead during execution of a program. In noncontiguous allocation address translation is performed during execution Contiguous memory allocates single area of memory Noncontigious memory allocates several memory areas - one memory are to each component of a process

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

Difference between contiguous and non contiguous memory allocation?

In a contiguous memory allocation there is no overhead during execution of a program. In a non contiguous memory allocation address translation is performed during execution.


What is the difference between contiguous and non contiguous memory allocation?

in contiguous allocation overhead during execution of a program.in non contiguous allocation address translation is performed during execution of a program..


What is the difference between contiguous and noncontiguous text?

Dfference between contiguous and noncontiguous1) In contiguous allocation there is no overhead during execution of a program.1)In noncontiguous allocation address translation is performed during execution2)Contiguous memory allocates single area of memory2)Noncontigious memory allocates several memory areas - one memory are to each component of a process


What is the advantage of non-contiguous?

Non-contiguous memory allocation allows a system to utilize memory more efficiently by allocating space in various locations rather than in a single block. This flexibility can lead to better performance, as it reduces fragmentation and makes it easier to use available memory. It also enables processes to run in parallel without requiring large contiguous blocks of memory, which can be beneficial in dynamic environments where memory demands fluctuate. Overall, non-contiguous allocation enhances resource utilization and system responsiveness.


What is Difference between contiguous set of files and a noncontiguous set of files?

Contiguous: Immediately adjacent. For example, contiguous sectors on a disk are sectors that come one after the other. Frequently, a file stored on disk can become fragmented, which means that it is stored on non-contiguous sectors. taken from http://www.webopedia.com/TERM/C/contiguous.HTML So one could assume that the difference is that contiguous files are files that are stored immediately adjacent from one another (together) and non-contiguous files are not stored adjacently hence are separated or scattered. Hope this was of some help.


What is contenuous allocation?

Contiguous allocation is a memory management technique where a single block of memory is allocated to a process in a single, continuous segment. This means that all of the process's data and instructions are stored in adjacent memory addresses, which can enhance access speed due to spatial locality. However, it can lead to fragmentation, where free memory is split into small, non-contiguous blocks, making it difficult to allocate larger segments for new processes. This method is often contrasted with paging or segmentation, which allow for non-contiguous memory allocation.


Difference between voltaile and non-voltaile memory?

Volatile Memory requires power to maintain the stored memory. Eg. Random Access Memory (RAM) Non-Volatile Memory does not require poer to maintain the stored memory. Eg. Hard Disk, Compact Disk, Flash memory.


What is the difference between non-volatile memory and storage is that the memory is__________ and storage is_________.A. temporary, permanentB. permanent, temporaryC. slow, fastD. none of the above?

A


What is Arrays of Pointers?

An array of pointers is a contiguous block of memory that contains pointers to other memory locations. They essentially allow non-contiguous memory locations to be treated as if they were an actual array.


What is paging?

Paging is a memory management scheme, in which data is fetched from the disk to memory in the form of equal size blocks called pages.paging is a method for allowing the non-contiguous allocation of memory space to processes when nedded.


What is the difference between a proposition and a non proposition?

difference between a proposition and non proposition


Which fragmentation is preferred external or internal?

The preference between external and internal fragmentation depends on the context of memory management. Internal fragmentation occurs when allocated memory blocks are larger than necessary, leading to wasted space within allocated regions. External fragmentation arises when free memory is split into small, non-contiguous blocks, making it difficult to allocate larger contiguous segments. Generally, minimizing external fragmentation is preferred because it allows for better memory utilization and allocation flexibility.