Question: Which statement is true when you run the code shown below?
- The forked process shares the event loop with the parent process
- A new VM instance is created and the two VM instances will be shared between the forked process and the parent process.
- The forked process will have its own VM instance.
- 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.