Multiple choice technology operating systems

A child process has same image of parent process

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

When a child process is created via fork(), it starts as an exact duplicate of the parent process - same memory image, program counter, file descriptors, and execution state. While exec() can replace this with a different program, the fork() itself creates an identical copy.