- 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.
Q 2 - Which of the following is true about AngularJS expressions?
A - Expressions are used to bind application data to html.
B - Expressions are written inside double braces like {{ expression}}.
Answer : D
Explaination
Expressions are used to bind application data to html. Expressions are written inside double braces like {{ expression}}. Expressions behave in same way as ng-bind directives. AngularJS application expressions are pure JavaScript expressions and outputs the data where they are used.
Q 3 - Which of the following is true about lowercase filter?
A - Lowercase filter converts a text to lower case text.
B - Lowercase filter is a function which takes text as input.
Answer : A
Explaination
Lowercase filter converts a text to lower case text. It is simply added to AngularJS expression to filter out the result.
Answer : A
Explaination
angular.module is primarily used to create application module.
Answer : A
Explaination
AngularJS needs data in JSON format to populate its model.
Q 6 - Which of the following is true about provider?
A - provider is used by AngularJS internally to create services, factory etc.
B - provider is used during config phase.
Answer : D
Explaination
provider is used by AngularJS internally to create services, factory etc. during config phase(phase during which AngularJS bootstraps itself). Below mention script can be used to create MathService that we've created earlier. Provider is a special factory method with a method get() which is used to return the value/service/factory.
Answer : B
Explaination
Services are singleton objects which are instantiated only once in app.
Answer : B
Explaination
With AngularJS, developer writes less code and gets more functionality.
Q 9 - ng-init directive can be used to put values to the variables to be used in the application.
Answer : A
Explaination
ng-init directive can be used to put values to the variables to be used in the application.
Answer : A
Explaination
In controllers, model data is accessed via $scope object.
