Answer:
Explanation:
first fit:
115 -> 300
500-> 600
358 -> 750
200 -> 350
375 -> not able to allocate
Best fit:
115 -> 125
500 -> 600
358 -> 750
200 -> 200
375 -> not able to allocate
worst fit:
115 -> 750
500 -> 600
358 -> not able to allocate
200 -> 350
375 -> not able to allocate