- AngularJS - Home
- AngularJS - Overview
- AngularJS - Environment Setup
- AngularJS - MVC Architecture
- AngularJS - First Application
- AngularJS - Directives
- AngularJS - Expressions
- AngularJS - Controllers
- AngularJS - Filters
- AngularJS - Tables
- AngularJS - HTML DOM
- AngularJS - Modules
- AngularJS - Forms
- AngularJS - Includes
- AngularJS - AJAX
- AngularJS - Views
- AngularJS - Scopes
- AngularJS - Services
- AngularJS - Dependency Injection
- AngularJS - Custom Directives
- AngularJS - Internationalization
- AngularJS - ToDo Application
- AngularJS - Notepad Application
- AngularJS - Bootstrap Application
- AngularJS - Login Application
- AngularJS - Upload File
- AngularJS - In-line Application
- AngularJS - Nav Menu
- AngularJS - Switch Menu
- AngularJS - Order Form
- AngularJS - Search Tab
- AngularJS - Drag Application
- AngularJS - Cart Application
- AngularJS - Translate Application
- AngularJS - Chart Application
- AngularJS - Maps Application
- AngularJS - Share Application
- AngularJS - Weather Application
- AngularJS - Timer Application
- AngularJS - Leaflet Application
- AngularJS - Lastfm Application
- AngularJS Useful Resources
- AngularJS - Questions and Answers
- AngularJS - Quick Guide
- AngularJS - Useful Resources
- AngularJS - Discussion
AngularJS Online Quiz
Following quiz provides Multiple Choice Questions (MCQs) related to AngularJS 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.
Answer : B
Explaination
AngularJS code is unit testable.
Q 3 - What is MVC?
A - MVC is name of an algorithm.
B - MVC is a software design pattern for developing web applications.
C - MVC is a software technique to optimize web application performance.
Answer : B
Explaination
Model View Controller or MVC as it is popularly called, is a software design pattern for developing web applications.
Answer : A
Explaination
angular.module is primarily used to create application module.
Q 5 - Which of the following is true about ng-include directive?
A - Embed HTML pages within a HTML page using ng-include directive
B - Embed JS files within a HTML page using ng-include directive
Answer : A
Explaination
Using AngularJS, we can embed HTML pages within a HTML page using ng-include directive.
Q 6 - factory method is used to define a factory which can later be used to create services as and when required.
Answer : A
Explaination
factory method is used to define a factory which can later be used to create services as and when required.
Q 7 - Templates are the rendered view with information from the controller and model.
Answer : A
Explaination
Templates are the rendered view with information from the controller and model.
Answer : B
Explaination
ng-app directive defines and links an AngularJS application to HTML.
Answer : A
Explaination
AngularJS Expressions are used to bind application data to html.
Q 10 - We need to incorporate corresponding js according to locale of the country to support Internationalization in AngularJS based application.
Answer : A
Explaination
AngularJS supports inbuilt internationalization for three types of filters currency, date and numbers. We only need to incorporate corresponding js according to locale of the country. By default it handles the locale of the browser. For example, to use Danish locale, use following script
<script src="https://code.angularjs.org/1.2.5/i18n/angular-locale_da-dk.js"></script>
