Question: Which statement is true when you run the code shown below?

  1. The forked process shares the event loop with the parent process
  2. A new VM instance is created and the two VM instances will be shared between the forked process and the parent process.
  3. The forked process will have its own VM instance.
  4. The forked process shares the same VM thread with the parent process.

Answer: The correct answer of the above question is Option C:The forked process will have its own VM instance.