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 : C

Explaination

ng-model directive binds the values of AngularJS application data to HTML input controls. It creates a model variable which can be used with the html page and within the container control( for example, div) having ng-app directive.

Answer : C

Explaination

Model is the lowest level of the pattern responsible for maintaining data.

Q 4 - ng-click directive represents a AngularJS click event.

A - true

B - false

Answer : A

Explaination

ng-click directive represents a AngularJS click event.

Q 5 - $rootScope is the parent of all of the scope variables.

A - true

B - false

Answer : A

Explaination

$rootScope is the parent of all of the scope variables.

Answer : D

Explaination

Services are JavaScript functions and are responsible to do specific tasks only. Each service is responsible for a specific task for example, $http is used to make ajax call to get the server data. $route is used to define the routing information and so on. Inbuilt services are always prefixed with $ symbol.

Q 7 - Custom directives are used in AngularJS to extend the functionality of HTML.

A - true

B - false

Answer : A

Explaination

Custom directives are used in AngularJS to extend the functionality of HTML.

Q 8 - ng-model binds the values of AngularJS application data to HTML input controls.

A - true

B - false

Answer : A

Explaination

ng-model binds the values of AngularJS application data to HTML input controls.

Q 9 - ng-init directive can be used to put values to the variables to be used in the application.

A - true

B - false

Answer : A

Explaination

ng-init directive can be used to put values to the variables to be used in the application.

Q 10 - In controllers, model data is accessed via $scope object.

A - true

B - false

Answer : A

Explaination

In controllers, model data is accessed via $scope object.

angularjs_questions_answers.htm
Advertisements