Answer and Explanation:
• The first fit method will allocate the free partition at initial. It is one of the fastest algorithms as it would search only as little as possible.
• The next fit method also finds the free partition at initial but at the next time, it will start its searching where it left off.
• Compared to both first and next fit, the memory utilization is good only for best fit as it will search for the available smallest free partition first.
• If the memory to be allocated is smaller, then there is more chance for the memory area to get wasted in first fit method.
• The searching process of the best fit method will be slower compared to first fit method and unused memory may be filled with small useless holes.