Skip to content

Commit f9f1fd6

Browse files
authored
feat: added nodejs module on the topics and shared some basic question asked in interview (bregman-arie#10267)
* feat: added nodejs module on the topics and shared some basic question asked in interview * fix: added image and link in the readme file
1 parent b2e29b8 commit f9f1fd6

File tree

4 files changed

+37
-0
lines changed

4 files changed

+37
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@
9494
<td align="center"><a href="#Misc"><img src="images/general.png" width="75px;" height="75px;" alt="Misc"/><br /><b>Misc</b></a></td>
9595
<td align="center"><a href="#elastic"><img src="images/elastic.png" width="75px;" height="75px;" alt="Elastic"/><br /><b>Elastic</b></a></td>
9696
<td align="center"><a href="topics/kafka/README.md"><img src="images/logos/kafka.png" width="85px;" height="80px;" alt="Kafka"/><br /><b>Kafka</b></a></td>
97+
<td align="center"><a href="topics/node/node_questions_basic.md"><img src="images/nodejs.png" width="85px;" height="80px;" alt="NodeJs"/><br /><b>NodeJs</b></a></td>
9798
</tr>
9899

99100
</table>

images/nodejs.png

22.5 KB
Loading

topics/node/node_questions_basic.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# NODEJS BASIC INTERVIEW QUESTIONS
2+
3+
# OBJECTIVE
4+
5+
To Tell about the basic questions asked in node to me in many interviews
6+
7+
1. What is Nodejs ?
8+
2. How many threads does nodejs have ?
9+
3. How do nodejs work ?
10+
4. Is nodejs Single Threaded Or Multi Threaded ?
11+
5. what is node cluster ?
12+
6. Does parent process depends on the child preocess ?
13+
7. How many types of module do nodejs have ?
14+
8. Why nodejs ?
15+
9. What is npm ?
16+
10. Difference between pacakage.json and pacakage-lock.json ?
17+
11. What is the difference betwwen creating a server with http and a framework ?
18+
12. What do you mean by non-blocking ?
19+
13. What is event loop ?
20+
14. What is event driven ?
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# ANSWERS
2+
3+
1. Node.js is an open-source, cross-platform JavaScript runtime environment that allows developers to build server-side and networking applications.
4+
2. Nodejs is a single threaded langauage . It handles one operation at a time.
5+
3. Node.js works by executing JavaScript code in a runtime environment outside of a web browser.
6+
4. Node.js works by executing JavaScript code in a runtime environment outside of a web browser. mainly used for performance and scalabilty od the project
7+
5. Parent process manages the child process but not depend on the clid process to run parralel
8+
6. Three Modules mainly
9+
1. Core Module - fs , require
10+
2. Local modules - like function created by us and exported or imported from one file to another
11+
3. Third Party module - like npm pacakages whcih we install to do a specific kind of work
12+
7. NPM (Node Pacakage Manager) used for installing, managing, and sharing JavaScript packages and dependencies.
13+
8. Difference between pacakage.json and pacakage-lock.json
14+
1.pacakage.json - contains the metadata and the dependendies of a project
15+
2.pacakage-lock.json - lock the version of the installed dependencies
16+

0 commit comments

Comments
 (0)