Loading

Quipoin Menu

Learn • Practice • Grow

node-js / Introduction to npm
mcq
Direction: Choose the correct option

Q1.

What does npm stand for?
A. Node Package Manager
B. New Package Manager
C. Node Package Module
D. Node Project Manager
Direction: Choose the correct option

Q2.

Where does npm download packages from?
A. Google
B. The npm registry
C. Node.js website
D. GitHub
Direction: Choose the correct option

Q3.

Which command initializes a new npm project and creates `package.json`?
A. npm init
B. npm new
C. npm create
D. npm start
Direction: Choose the correct option

Q4.

What is the purpose of `node_modules` folder?
A. To store logs
B. To store configuration files
C. To store installed npm packages
D. To store project source code
Direction: Choose the correct option

Q5.

Should `node_modules` be committed to version control?
A. Only for development
B. Only for production
C. No, it can be regenerated from `package.json`
D. Yes, always