Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
100% found this document useful (1 vote)
622 views

Advanced Web Development - MCQ Answers

The document provides information across 4 weeks. It includes questions and answers related to MongoDB, ExpressJS, AngularJS, Heroku, and Node.js. Key topics covered include the JSON format used by MongoDB, the explain method in MongoDB, middleware in ExpressJS, AngularJS directives and tags, Heroku as a PaaS, Express core features and debugging commands, and using Npm.

Uploaded by

ksravanpani
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
100% found this document useful (1 vote)
622 views

Advanced Web Development - MCQ Answers

The document provides information across 4 weeks. It includes questions and answers related to MongoDB, ExpressJS, AngularJS, Heroku, and Node.js. Key topics covered include the JSON format used by MongoDB, the explain method in MongoDB, middleware in ExpressJS, AngularJS directives and tags, Heroku as a PaaS, Express core features and debugging commands, and using Npm.

Uploaded by

ksravanpani
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

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

You might also like