Skip to content

Instantly share code, notes, and snippets.

View Bhargav1606's full-sized avatar
πŸ’­
I may be slow to respond.

Sneha Bhargava Bhargav1606

πŸ’­
I may be slow to respond.
  • Sam Higginbottom University of Agriculture, Technology and Sciences
  • Prayagraj, UP
  • 12:36 (UTC +05:30)
View GitHub Profile

Interview Questions

Node.js

Q1: What do you mean by Asynchronous API? β˜†β˜†

Answer: All APIs of Node.js library are aynchronous that is non-blocking. It essentially means a Node.js based server never waits for a API to return data. Server moves to next API after calling it and a notification mechanism of Events of Node.js helps server to get response from the previous API call.

Source: tutorialspoint.com