- AngularJS Tutorial
- 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 Applications
- 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
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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 - What is View in MVC?
A - View represents a database view.
B - View is responsible for displaying all or a portion of the data to the user.
Answer : B
Explaination
View is responsible for displaying all or a portion of the data to the user.
Q 4 - Which of the following is true about currency filter?
A - Currency filter formats text in a currency format.
B - Currency filter is a function which takes text as input.
Answer : B
Explaination
Currency filter formats text in a currency format. It is simply added to AngularJS expression to filter out the result.
Answer : B
Explaination
AngularJS provides $http control which works as a service to make ajax call to read data from the server.
Q 6 - service method is used to create a service whose purpose is to do some defined task.
Answer : A
Explaination
service method is used to create a service whose purpose is to do some defined task.
Q 7 - Custom directives are used in AngularJS to extend the functionality of HTML.
Answer : A
Explaination
Custom directives are used in AngularJS to extend the functionality of HTML.
Q 8 - AngularJS provides capability to create Single Page Application in a very clean and maintainable way.
Answer : A
Explaination
AngularJS provides capability to create Single Page Application in a very clean and maintainable way.
Q 9 - AngularJS Expressions are written inside double braces like {{ expression}}.
Answer : B
Explaination
AngularJS Expressions are written inside double braces like {{ expression}}.
Answer : A
Explaination
Inbuilt services are always prefixed with $ symbol.