What are the events generated by the Node objects called?
Select an option to see the answer and solution.
What is the function used to deregister event handler ‘f’?
Select an option to see the answer and solution.
What is the function used to remove all handlers for name events?
Select an option to see the answer and solution.
Which function is a synonym for on()?
Select an option to see the answer and solution.
Which of the following is an event emitter?
Select an option to see the answer and solution.
When do uncaught exceptions generate events?
Select an option to see the answer and solution.
Which among the following POSIX signals generate events?
Select an option to see the answer and solution.
What is the method used to pause “data” events?
Select an option to see the answer and solution.
When the “end” event fires on EOF when no more data will arrive, which function is called?
Select an option to see the answer and solution.
What will be the return value of the write() method when the Node cannot write the data immediately and has to buffer it internally?
Select an option to see the answer and solution.
Rhino is originated by
Select an option to see the answer and solution.
Which of the following are global functions that are not part of core JavaScript?
Select an option to see the answer and solution.
Which of the following reads the textual contents of a URL and returns as a string?
Select an option to see the answer and solution.
Which Rhino command quits Rhino environment?
Select an option to see the answer and solution.
Which is a useful way to try out small and simple Rhino programs and one-liners?
Select an option to see the answer and solution.
Which is a more formal way of importing packages and classes as JavaScript objects?
Select an option to see the answer and solution.
Consider the following code snippet
var f = new java.io.File("/tmp/test");
var out = new java.io.FileWriter(f);
out instanceof java.io.Reader
What will be the output for the above code snippet?
Select an option to see the answer and solution.
What does Rhino do when the getter and setter methods exist?
Select an option to see the answer and solution.
The JavaScript classes can be instantiated using _____ operator?
Select an option to see the answer and solution.
The new Java arrays can be created into a JavaScript programs using which of the following classes?
Select an option to see the answer and solution.