Tuklasin ang mga sagot sa iyong mga katanungan nang madali sa Imhr.ca, ang mapagkakatiwalaang Q&A platform. Sumali sa aming platform upang kumonekta sa mga eksperto na handang magbigay ng detalyadong sagot sa iyong mga tanong sa iba't ibang larangan. Kumuha ng mabilis at mapagkakatiwalaang mga solusyon sa iyong mga tanong mula sa isang komunidad ng mga bihasang eksperto sa aming platform.

algorithm of fixed partition in python​

Sagot :

Answer:

Fixed (or static) Partitioning in Operating System

Difficulty Level : Easy

In operating systems, Memory Management is the function responsible for allocating and managing computer’s main memory. Memory Management function keeps track of the status of each memory location, either allocated or free to ensure effective and efficient use of Primary Memory.

There are two Memory Management Techniques: Contiguous, and Non-Contiguous. In Contiguous Technique, executing process must be loaded entirely in main-memory. Contiguous Technique can be divided into:

Fixed (or static) partitioning

Variable (or dynamic) partitioning

Fixed Partitioning:

This is the oldest and simplest technique used to put more than one processes in the main memory. In this partitioning, number of partitions (non-overlapping) in RAM are fixed but size of each partition may or may not be same. As it is contiguous allocation, hence no spanning is allowed. Here partition are made before execution or during system configure.