Consider a computer C1 has n CPUs and k processes. Which of the follow...
The maximum number of processes in ready state is K:
This statement is true. This statement is true. In a system with k processes, all k processes can be in the ready state simultaneously. If Not given Number of process then the number of processes in the ready state at any given time depends on the current scheduling algorithm and the amount of CPU time available. It is not limited by the number of processes or CPUs in the system.
The maximum number of processes in block state is K:
This statement is false. The block state typically represents processes that are waiting for some event or resource, and the number of processes in the block state is not necessarily limited to k. It depends on the nature of the processes and the resources they are waiting for.
The maximum number of processes in running state is K:
This statement is false. The maximum number of processes that can be in the running state simultaneously is limited by the number of CPUs available in the system, which is n in this case, not K.
The maximum number of processes in running state is n:
This statement is true. The number of processes that can be in the running state simultaneously is limited by the number of CPUs available in the system, which is n in this case. If there are more than n processes in the ready state, some of them have to wait until a CPU becomes available.
Hence the correct answer is option 2, and option 3.