Node Process Flashcards

1
Q

What is a computer process?

A

Instance of a computer program being executed by one or more threads

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Why should a full stack Web developer know that computer processes exist?

A

To know to check that each process required to make the app work is even running

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the process object in a Node.js program?

A

a global object that provides information about, and control over, the current Node.js process.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How do you access the process object in a Node.js program?

A

Access it globally (just use it)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the data type of process.argv in Node.js?

A

Array

How well did you know this?
1
Not at all
2
3
4
5
Perfectly