Step 1: Understand the process creation sequence.
- **B**: The process creation starts with the **fork()** system call, which creates a new child process.
- **A**: After the process is created, the **exec()** system call is used by the child process to replace its memory space with a new program.
- **D**: The **exec()** system call loads a new binary file into memory and starts execution.
- **C**: The parent process can then create more children or call the **wait()** system call to wait for the child process to finish execution.
Step 2: Conclusion.
Thus, the correct order is **B, A, D, C**.
Match List-I with List-II and choose the correct answer:
Match List-I with List-II:
Who said this sentence –
Match List-I with List-II and choose the correct answer: