1

There are 1 best solutions below

0
On BEST ANSWER

No, a process cannot be allowed to request more that its declared maximum need.

Reason: The Banker's algorithm uses the max need of each process while determining safety of a request. If a process is allowed to request more than max need resources, then paths that were considered to be safe during some previous allocations might become unsafe. So the safety analysis would collapse.

P.S. This answer is given by Dhananjay Dhamdhere https://www.cse.iitb.ac.in/~dmd/

Thanks sir, for resolving my query.