answersLogoWhite

0


Best Answer

The largest chuck of available memory that is not fragmented.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is contiguous memory?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Performing Arts

What is contiguous memory allocation in os?

Memory allocation: When a program asks for memory and gets it. Contiguous allocation: When the memory is in one big block, for example memory addresses 1000-2000, as opposed to "fragmented allocation" where the memory comes as several smaller blocks in different places, for example memory addresses 1000-1050, 2050-2125, ...


What is contiguous allocation?

Paging is a memory management scheme that permits the physical- address space of process to be noncontiguous.


What is the Difference between paging and demand paging in operating system?

paging is the process of memory management in which memory is allocated in the non contiguous form,i.e. the program is break into block of fixed size known as page and also the main memory also break down into block of same size known as frame or page frame. Now all this page are brought into the main memory but in the space available so they can be contiguous if they find whole space required by the program or if the space is available but in scattered form then they can give space in non contiguous form. But in demand paging only those pages are brought into main memory which are required to execute the program at that time when a program need other pages it will swap out the unused pages from the main memory and swap in the desired page thus allowing it to execute the program though the space available is not sufficient to bring the whole program into main memory..................One of the problem arises due to demand paging is page fault which is caused due to required page not found in main memory for which we require swapping. hey if you like my post don't forget to thank me....... for any further queries e-mail me at hemant_spidey3@yahoo.co.in or 1989hemantrajput@gmail.com


Difference between internal fragmentation and external fragmentation in operating system?

Fragmentation occurs in a dynamic memory allocation system when many of the free blocks are too small to satisfy any request. External Fragmentation: External Fragmentation happens when a dynamic memory allocation algorithm allocates some memory and a small piece is left over that cannot be effectively used. If too much external fragmentation occurs, the amount of usable memory is drastically reduced. Total memory space exists to satisfy a request, but it is not contiguous. Internal Fragmentation: Internal fragmentation is the space wasted inside of allocated memory blocks because of restriction on the allowed sizes of allocated blocks. Allocated memory may be slightly larger than requested memory; this size difference is memory internal to a partition, but not being used


What is external fragmentation in operating system?

External fragmentation refers to the division of free storage into small pieces over a period of time, due to an inefficient memory allocation algorithm, resulting in the lack of sufficient storage for another program because these small pieces are not contiguous.

Related questions

Difference between contiguous and non contiguous memory?

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


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 meant by contiguous memory allocation in C?

Contiguous memory allocation in C programming refers to the assigning of consecutive memory blocks to a process. Contiguous memory allocation is one of the oldest and most popular memory allocation schemes in programming.


What is contiguous storage?

Contiguous means to share an edge or boundary, touching, adjacent, neighbouring and so on. Thus contiguous storage allocation is any allocation that consumes two or more contiguous storage elements. In the case of contiguous memory allocation, this means two or more contiguous memory addresses are allocated. A one-dimensional array is an example of a contiguous memory allocation, where one array element (a data type) is immediately followed by the next.


What is contiguous storage allocation?

Contiguous means to share an edge or boundary, touching, adjacent, neighbouring and so on. Thus contiguous storage allocation is any allocation that consumes two or more contiguous storage elements. In the case of contiguous memory allocation, this means two or more contiguous memory addresses are allocated. A one-dimensional array is an example of a contiguous memory allocation, where one array element (a data type) is immediately followed by the next.


Compare Contiguous memory allocation with internal fragmentation?

in early, computer system has contiguous memory allocation,each process is allocated in a single contiguous(together) memory!!(allocating into memory addresses one by one,)it has tackled memory fragmentation(both internal and external). not allocating for a fixed size memory block.so no internal fragmentation, allocating contiguously ,so no external fragmentation!!!


Must the pages of a process in main memory be contiguous?

no


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


In what are various cells of memory allocated consecutively?

Contiguous memory address are allocated to an array or vector.


Contiguous memory allocation program in Linux?

malloc or calloc


What are advantages and disadvantages of contiguous memory allocation?

The advantage of contiguous memory allocation is 1. It supports fast sequential and direct access 2. It provides a good performance 3. the number of disk seek required is minimal The disadvantage of contiguous memory allocation is fragmentation.


What is contiguous memory allocation in os?

Memory allocation: When a program asks for memory and gets it. Contiguous allocation: When the memory is in one big block, for example memory addresses 1000-2000, as opposed to "fragmented allocation" where the memory comes as several smaller blocks in different places, for example memory addresses 1000-1050, 2050-2125, ...