answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is advantage of segmentation over paging in virtual memory?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are the differences between simple paging and virtual memory paging?

In case of simple paging all pages should be in main memory to run a process..while in case of virtual memory paging pages can be loaded as needed by the processor i.e. called demand paging...


In paging how the virtual memory can be implemented?

its depends on number of processes in memory.


Why are segmentation and paging sometimes combined into one scheme?

Segments can be of different lengths, so it is harder to find a place for a segment in memory than a page. With segmented virtual memory, we get the benefits of virtual memory but we still have to do dynamic storage allocation of physical memory. In order to avoid this, it is possible to combine segmentation andpaging into a two-level virtual memory system. Each segment descriptor points to page table for that segment.This give some of the advantages of paging (easy placement) with some of the advantages of segments (logical division of the program). ok hope wil b helfill


How Intel Pentium supports segmentation and paging?

The Intel Pentium supports pure segmentation and segmentation with paging. The processor creates logical addresses, which are mapped to physical addresses by the segmentation unit. Those addresses may point to physical addresses within memory or paged swap space.


Compare paging with segmentation with respect to the amount of memory required by the address translation structures in order to convert virtual addresses to physical addresses?

Paging requires more memory overhead to maintain the translation structures. Segmentation requires just two registers per segment: one to maintain the base of the segment and the other to maintain the extent of the segment. Paging on the other hand requires one entry per page, and this entry provides the physical address in which the page is located.


When virtual memory is in use excessive paging is referred to as?

FALSE


Definition of pure segmentation and pure paging?

In a pure segmentation architecture, segments are allocated like variable partitions, although the memory management hardware is involved in decoding addresses. Pure segmentation addresses replace the page identifier in the virtual address with a segment identifier, and find the proper segment (not page) to which to apply the offset.


Is the condition of excessive paging referred to as thrashing when virtual memory is in use?

Nope, swapping and paging are essentially synonymous. Excessive paging is known as thrashing.


What is the normal path of the Windows paging used for virtual memory?

C:\pagefile.dat


Explain in detail page memory management scheme?

Memory Management is the crucial part of the concurrent systems.Various methods are used to utilize memory efficiently.Memory paging is the one from them .Memory Paging:pagingis one of the memory-management schemes by which a computer can store and retrieve data from secondary storage for use in main memory. In the paging memory-management scheme, the operating system retrieves data from secondary storage in same-size blocks called pages. The main advantage of paging over memory segmentation is that it allows the physical address space of a process to be noncontiguous. Before the time paging was used, systems had to fit whole programs into storage contiguously, which caused various storage andfragmentation problems.[1]Paging is an important part of virtual memory implementation in most contemporary general-purpose operating systems, allowing them to use disk storage for data that does not fit into physical random-access memory (RAM).


What is the normal path of windows paging file used for virtual memory?

C:\pagefile.dat


Why paging is faster than segmentation?

Paging is a technique with the help of which we can divide the memory into pages which help us to easly access the files and it also decreases the Execution time (Saves SYSTEM time). It also creates a mirage of Memory.