291). Which is a fast C++ based JavaScript interpreter?

[A]Node
[B]Sockets
[C]Processors
[D]Closures

Show Answer

292). Why does the Node rely on event handlers?

[A]APIs are synchronous
[B]APIs are asynchronous
[C]APIs are reusable
[D] APIs are modular

Show Answer

293). What is the command to run the node programs?

[A]node(program.js)
[B]program.js
[C]node program.js
[D]node.program.js

Show Answer

294). What is the alternative command used in Node for load()?

[A]store()
[B]module()
[C]log()
[D]require()

Show Answer

295). What is the command used for debugging output in Node?

[A] print();
[B]console.log(…);
[C] debug(…);
[D] execute(…);

Show Answer

296). What is the code to print hello one second from now?

[A]setTimeout(function() { console.log(“Hello World”); }, 1000);
[B]setTimeout(function() { 1000, console.log(“Hello World”); });
[C]setTimeout(function(1000) { console.log(“Hello World”); });
[D]setTimeout(function() { console.log(“Hello World”); });

Show Answer

297). Among the below given functions, Node supports which of the following client-side timer functions?

[A]getInterval()
[B]Interval()
[C] clearTime()
[D] clearTimeout()

Show Answer

298). The necessary globals of a node are defined under which namespace?

[A]variables
[B]system
[C]process
[D]using

Show Answer

299). Why does Node not block while waiting for operations to complete?

[A]Static
[B]Asynchronous
[C]Synchronous
[D]Recursive

Show Answer

300). Which is the method used for registering handlers?

[A] on()
[B]register()
[C]add()
[D]include()

Show Answer