Process Model and IPC Interview questions


Total available count: 17
Subject - Operating System
Subsubject - Process Model and IPC

What is an advantage of executing a process in background?

The most common reason to put a process in the background is to allow you to do something else interactively without waiting for the process to complete. At the end of the command you add the special background symbol, &. This symbol tells your shell to execute the given command in the background.

Code practise: cp *.* ../backup& (cp is for copy).




Next 5 interview question(s)

1
How would you kill a process?
2
What is ps command for?
3
What is a Daemon?
4
What happens when you execute a command?
5
What happens when you execute a program?