- Node.js - Home
- Node.js - Introduction
- Node.js - Environment Setup
- Node.js - First Application
- Node.js - REPL Terminal
- Node.js - Command Line Options
- Node.js - Package Manager (NPM)
- Node.js - Callbacks Concept
- Node.js - Upload Files
- Node.js - Send an Email
- Node.js - Events
- Node.js - Event Loop
- Node.js - Event Emitter
- Node.js - Debugger
- Node.js - Global Objects
- Node.js - Console
- Node.js - Process
- Node.js - Scaling Application
- Node.js - Packaging
- Node.js - Express Framework
- Node.js - RESTFul API
- Node.js - Buffers
- Node.js - Streams
- Node.js - File System
- Node.js MySQL
- Node.js - MySQL Get Started
- Node.js - MySQL Create Database
- Node.js - MySQL Create Table
- Node.js - MySQL Insert Into
- Node.js - MySQL Select From
- Node.js - MySQL Where
- Node.js - MySQL Order By
- Node.js - MySQL Delete
- Node.js - MySQL Update
- Node.js - MySQL Join
- Node.js MongoDB
- Node.js - MongoDB Get Started
- Node.js - MongoDB Create Database
- Node.js - MongoDB Create Collection
- Node.js - MongoDB Insert
- Node.js - MongoDB Find
- Node.js - MongoDB Query
- Node.js - MongoDB Sort
- Node.js - MongoDB Delete
- Node.js - MongoDB Update
- Node.js - MongoDB Limit
- Node.js - MongoDB Join
- Node.js Modules
- Node.js - Modules
- Node.js - Built-in Modules
- Node.js - Utility Modules
- Node.js - Web Module
Node.js Online Quiz
Following quiz provides Multiple Choice Questions (MCQs) related to Node.js Framework. You will have to read all the given answers and click over the correct answer. If you are not sure about the answer then you can check the answer using Show Answer button. You can use Next Quiz button to check new set of questions in the quiz.
Q 1 - All APIs of Node.JS are.
Answer : A
Explanation
All APIs of Node.js library are aynchronous that is non-blocking.
Q 2 - What is use of Underscore Variable in REPL session?
Answer : B
Explanation
You can use undercore _ to get the last result.
Q 3 - Buffer class is a global class and can be accessed in application without importing buffer module.
Answer : A
Explanation
Buffer class is a global class and can be accessed in application without importing buffer module.
Q 4 - Which method of fs module is used to read a file?
A - fs.open(path, flags[, mode], callback)
B - fs.openFile(path, flags[, mode], callback)
Answer : D
Explanation
fs.read(fd, buffer, offset, length, position, callback) is the method which is used to read a file.
Q 5 - Which of the following is true about setInterval(cb, ms) global function?
Answer : C
Explanation
The setInterval(cb, ms) global function is used to run callback cb repeatedly after at least ms milliseconds. The actual delay depends on external factors like OS timer granularity and system load. - A timer cannot span more than 24.8 days. This function returns an opaque value that represents the timer which can be used to clear the timer using the function clearInterval(t).
Q 6 - Which of the following code prints current directory?
A - console.log('Current directory: ' + process.cwd());
B - console.log('Current directory: ' + console.cwd());
C - console.log('Current directory: ' + process.currenWorkingDirectory());
Answer : A
Explanation
process.cwd() can be used to get the current working directory.
Q 7 - Which of the following code print the total system memory of operating system?
A - console.log('total memory : ' + os.totalmem() + " bytes.");
B - console.log('total memory : ' + os.totalmem + " bytes.");
C - console.log('total memory : ' + os.getTotalMemory() + " bytes.");
Answer : A
Explanation
os.totalmem() returns the total amount of system memory in bytes.
Answer : A
Explanation
net.isIP(input) tests if input is an IP address. Returns 0 for invalid strings, returns 4 for IP version 4 addresses, and returns 6 for IP version 6 addresses.
Q 9 - Which of the following is true about fork methd of child_process module.
A - The fork() method method is a special case of the spawn() to create Node processes.
Answer : C
Explanation
The fork() method method is a special case of the spawn() to create Node processes. It returns object with a built-in communication channel in addition to having all the methods in a normal ChildProcess instance.
Answer : D
Explanation
header is not a valid HTTP method.