Express.js Multiple Choice Questions
Express.js Multiple Choice Questions 1) Who is credited as the developer of Express.js? Larry wall Rich Hickey TJ Holowaychuk Rob Pike Answer: C is the correct option. TJ Holowaychuk is credited as the developer of Express.js. 2) Which of the following are the core features of the Express framework? It allows us to set up middleware to respond to HTTP Requests. It defines a routing table that can work as per HTTP Method and URL. It is used to render the HTML pages dynamically. All of the above. Answer: D is the correct option. All of the above are the core features of the Express framework. 3) In which of the following year was Express.js initially released? November 2010 November 2011 December 2010 December 2011 Answer: A is the correct option. Express.js was initially released in November, 2010. 4) What will be the output of the following code in the console? File: my_module.js exports.name = 'Zeus'; Code: var my_module = require('./mymodule'); console.log((functio...