0 votes
in NodeJS Essentials by
Which of the following is used to create a child process in Node.js?

A) child_process.fork()

B) child_process.spawn()

C) child_process.exec()

D) child_process.execFile()

1 Answer

0 votes
by

Answer: A

Explanation: The child_process.fork() method is used to create a child process in Node.js.

...