#operating-system
Read more stories on Hashnode
Articles with this tag
CPU Scheduling: CPU scheduling is a process that allows one process to use the CPU while the execution of another process is on hold (in waiting...
Scheduling Algorithm is divided into mainly 2 parts. Pre-emptive. Non-pre-emptive. Scheduling algorithms It is the way of selecting the process...
In this article, you will the difference between Processes and Threads in an operating system. Here, we are talking about a multiprocessing/...
In this article, I am going to explain to you about User Mode and Kernel Mode in an operating system. The below diagram will help you to understand...
How many processes are created by the program? int main(){ int i; for(i=0;i<4;i++) fork(); return 0; } Answer: The formula for this fork()...
In this article, I am going to explain about fork system call. We will see some examples of the implementation of the fork system call to get a better...