Week 2
1. Which format/standard is used by MongoDB internally to store
documents?
JSON
2. What does the totalKeysExamined field returned by the explain method
indicate?
Number of Index entries Scanned
3. What will be the port number for HTTP based admin interface if
MongoDB is running at 443?
1443
4. What is middleware in ExpressJs?
Function(req, res, next){}
5. Which of the following commands will return all the posts with number of
likes greater than 100 and less than 200, both inclusive?
db.posts.findlikes: $gte: 100, $lte: 200;
Week 3
1, Which of the following is not a core AngularJS directive
Ng-state
2, Which HTML tag is used to define the templates in AngularJS
Script
3. Heroku is an example for
Paas
4, Which of the following is not valid AngularJS filter?
Email
5, Where does the ExpressJS is placed in MEAN stack
Backend Component
Week 4
1, What are core features of Express framework?
( It allows us to set up middleware to respond to HTTP
Requests.
It defines a routing table that can work as per HTTP Method
and URL
It is used to render the HTML pages dynamically)
All of the above.
2, What are the commands are used to enable debugging in
Express App?
Windows
3, To install Node.js express module
$npm install express
4, Npm stands for?
Node package manager
5, The $ npm ls statement is used to list down all the locally
installed module?
True