• AngularJS Video Tutorials

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.

Questions and Answers

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.

Answer : C

Explaination

It is a software Code that controls the interactions between the Model and View.

Answer : A

Explaination

orderby filter orders the array based on provided criteria. It is simply added to AngularJS expression to order the result.

Q 5 - Model available in $rootScope is available to its all child scopes.

A - true

B - false

Answer : A

Explaination

Model available in $rootScope is available to its all child scopes.

Q 6 - Which components can be injected as a dependency in AngularJS?

A - Application Module

B - constant

C - value

D - factory

Answer : A

Explaination

Application Module can not be injected as dependency.

Q 7 - Services are singleton objects which are instantiated only once in app.

A - false

B - true

Answer : B

Explaination

Services are singleton objects which are instantiated only once in app.

Q 8 - ng-app directive defines and links an AngularJS application to HTML.

A - false

B - true

Answer : B

Explaination

ng-app directive defines and links an AngularJS application to HTML.

Q 9 - currency filter is applied to an expression using pipe character.

A - true

B - false

Answer : A

Explaination

currency filter is applied to an expression using pipe character.

Q 10 - novalidate with a form declaration disables any browser specific validation.

A - false

B - true

Answer : B

Explaination

We can use novalidate with a form declaration to disable any browser specific validation.

angularjs_questions_answers.htm
Advertisements