AngularJS Online Test Questions

AngularJS Online Test

Take AngularJS Online Test and evaluate your readiness before you appear for any interview or written test. Consisting of objective type questions from various important concepts of AngularJS, this test presents you questions followed by four options. The correct answer, explanation, example provided with each question make it easier for you to to understand each concept well.

Who is this AngularJS Online Test designed for?

All the Front End developers, UI/ UX developers and designers will find this test extremely useful. All freshers, BCA, BE, BTech, MCA and college students wanting to make a career in front end designing will be highly benefitted by this test.

AngularJS Online Test topics

This online test covers topics like - Angular Expressions, Modules, Directives, Model, Data Binding, Controllers, Scopes, Filters, Services, Events, Forms, Validation etc.
1. AngularJS is a ________.

a. library  
b. framework
c. engine
d. plugin

Answer: b. framework

Explanation: AngularJS is a JavaScript framework. It can be added to an HTML page with a <script> tag.


2. Who is known as the Father of AngularJS?

a. Igor Minor
b. Brad Green
c. Misko Hevery
d. Brian Ford

Answer: c. Misko Hevery

Explanation: He is the creator of AngularJS


3. Where the Loading of AngularJS Library is recommended?

a. end of the <body> element.
b. in the <head>
c. start of the <body>
d. Both b and c
e. Only a

Answer: d. Both b and c

Explanation: It is recommended to load the AngularJS library either in the <head> or at the start of the <body>


4. AngularJS Expressions is 2-way data binding?

a. True
b. False

Answer: b. False

Explanation: AngularJS Expressions is one-way data binding.


5. AngularJS expressions support?

a. conditionals
b. loops
c. filters
d. exceptions

Answer: c. filters

Explanation: AngularJS expressions do not support conditionals, loops, and exceptions, while JavaScript expressions do.


6. AngularJS expressions are written using.

a. double braces - {{ expression}}
b. single braces - {expression}
c. Parentheses - (expression)
d. Brackets - [expression]

Answer: a. double braces - {{ expression}}

Explanation: Expressions are used within double braces.