Loading...
QUIZ

Certification Test

 
Que No. 1 ) Which of the following areas, Node.js, is not advised to be used?

A.) Single Page Applications
B.) JSON APIs based Applications
C.) CPU intensive applications
D.) Data-Intensive Real-time Applications (DIRT)


Que No. 2 ) Which of the following route parameter formats are valid?

A.) /books/!:from-:to
B.) /flights/:from-:to
C.) /users/:userId/books/:bookId
D.) None of the above.


Que No. 3 ) Which of the following module is required to create a web server?

A.) net module
B.) http module
C.) net module
D.) url module


Que No. 4 ) Which of the following is the correct syntax to initiate the Node.js File?

A.) filename.js
B.) node filename.js
C.) javascript filename.js
D.) node filename


Que No. 5 ) Which of the following method is used to compare the placement of two nodes in the DOM hierarchy (document)?

A.) cloneNode()
B.) compareDocumentPosition()
C.) getFeature()
D.) getUserData()


Que No. 6 ) Which of the following platforms does Node.js support?

A.) Windows
B.) Macintosh
C.) Unix/Linux
D.) All of the above.


Que No. 7 ) Which of the following keyword is used to make properties and methods available outside the module file?

A.) import
B.) module
C.) exports
D.) require


Que No. 8 ) Which of the following Node.js object property is used to return the node immediately before a node?

A.) localName
B.) index
C.) previousSibling
D.) textContent


Que No. 9 ) Which of the following is true about EventEmitter.on property?

A.) on property is used to fire event.
B.) on property is used to bind a function with the event.
C.) on property is used to locate an event handler.
D.) None of the above.


Que No. 10 ) Which of the following is true about Piping streams?

A.) Piping is a mechanism where we provide output of one stream as the input to another stream.
B.) Piping is normally used to get data from one stream and to pass output of that stream to another stream.
C.) There is no limit on piping operations.
D.) All of the above.