Question: 1) Simulate First Fit Memory Allocation Algorithm The number of memory partition (blocks) and size of processes are in units. The unit can be any
1) Simulate First Fit Memory Allocation Algorithm
The number of memory partition (blocks) and size of processes are in units. The unit can be any size, say, 16 Kbytes or 64 Kbytes.
a. In this part of the program, you will:
Prompt the user to enter the number of blocks (3 to 5)
Prompt the user to enter the number of processes (3 to 5)
You may prompt the user to enter block sizes and process sizes. You may also initialize them within the program.
Implement the First Fit algorithm. Note that each process is checked against starting from the first block and gets allocated to the first block that fits it.
When the process gets allocated, output the information on where it is placed and the remaining block size.
2) Simulate Best Fit Memory Allocation Algorithm
a. In this part of the program, you will modify your last program to implement Best Fit algorithm.
To make the comparison meaningful, use the same sets of blocks and processes as the last part.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
