Node.JS MCQs with Answers

How can we create instance of http module?
A)
var http = require("http")
B)
var http = new require("http")
C)
var http = new http()
D)
None of the above

Correct Answer :   var http = require("http")