AngularJS Interview Questions and Answers - CodeProject
AngularJS Interview Questions and Answers - CodeProject
1 of 22
http://www.codeproject.com/Articles/891718/AngularJS-Interview-Ques...
home
articles
quick answers
Sign in
discussions
features
community
help
CPOL
95.8K
1.6K
44
Rate this:
This article discusses the top 50 Most occurred AngularJS interview question with answers.
Contents
Angular Interview questions and answers
What is AngularJS ?
Explain Directives in Angular?
What are controllers and need of ng-controller and ng-model in Angular?
What are expressions in Angular?
How can we initialize Angular application data?
Explain $scope in Angular?
What is $rootScope and how is it related with $scope?
Do I need Jquery for Angular?
How is the data binding in Angular ?
Explain compile and link phase?
How do we make HTTP get and post calls in Angular?
How do we pass data using HTTP POST in Angular ?
What is dependency injection and how does it work in Angular?
How does DI benefit in Angular?
What are services in Angular?
Are Service object instances global or local?
What is a Factory in Angular?
What is the difference between Factory and Service?
How are validations implemented in Angular?
How to check error validation for a specific field?
8/11/2015 9:42 PM
2 of 22
http://www.codeproject.com/Articles/891718/AngularJS-Interview-Ques...
What is AngularJS ?
AngularJS is a JavaScript framework which simplifies binding JavaScript objects with HTML UI elements.
Let us try to understand the above definition with simple sample code.
Below is a simple Customer function with CustomerName property. We have also created an object called as
Cust which is of Customer class type.
Hide Copy Code
function Customer()
{
this.CustomerName = "AngularInterview";
}
var Cust = new Customer();
Now let us say the above customer object we want to bind to a HTML text box called as TxtCustomerName. In other
words when we change something in the HTML text box the customer object should get updated and when
something is changed internally in the customer object the UI should get updated.
Hide Copy Code
So in order to achieve this communication between UI to object developers end up writing functions as shown below.
UitoObject function takes data from UI and sets it to the object while the other function ObjecttoUI takes data
8/11/2015 9:42 PM
3 of 22
http://www.codeproject.com/Articles/891718/AngularJS-Interview-Ques...
function UitoObject()
{
Cust.CustomerName = $("#TxtCustomerName").val();
}
function ObjecttoUi()
{
$("#TxtCustomerName").val(Cust.CustomerName);
}
So if we analyze the above code visually it looks something as shown below. Your both functions are nothing but
binding code logic which transfers data from UI to object and vice versa.
Now the same above code can be written in Angular as shown below. The javascript class is attached to a HTML
parent div tag using ng-controller directive and the properties are binded directly to the text box using ng-model
declarative.
So now whatever you type in the textbox updates the Customer object and when the Customer object gets
updated it also updates the UI.
Hide Copy Code
<div ng-controller="Customer">
<input type=text id="txtCustomerName"
</div>
ng-model="CustomerName"/>
In short if you now analyze the above code visually you end up with something as shown in the below figure.You have
the VIEW which is in HTML, your MODEL objects which are javascript functions and the binding code in Angular.
8/11/2015 9:42 PM
4 of 22
http://www.codeproject.com/Articles/891718/AngularJS-Interview-Ques...
ng-model="CustomerName"/>
Some of the most commonly used directives are ng-app,ng-controller and ng-repeat.
For example below is simple Customer controller which provides data via CustomerName and CustomerCode
property and Add/ Update logic to save the data to database.
Note: - Do not worry too much about the $scope , we will discuss the same in the next question.
Hide Copy Code
function Customer($scope)
{
$scope.CustomerName = "Shiv";
$scope.CustomerCode = "1001";
$scope.Add = function () {
}
$scope.Update = function () {
}
}
ng-controller is a directive.Controllers are attached to the HTML UI by using the ng-controller directive tag and the
properties of the controller are attached by using ng-model directive. For example below is a simple HTML UI which
is attached to the Customer controller via the ng-controller directive and the properties are binded using
ng-model directive.
Hide Copy Code
<div ng-controller="Customer">
<input type=text id="CustomerName"
<input type=text id="CustomerCode"
</div>
ng-model="CustomerName"/><br />
ng-model="CustomerCode"/>
{{1+1}}
The below expression multiplies quantity and cost to get the total value.
Hide Copy Code
<div ng-controller="CustomerVM">
The value of Customer code is {{CustomerCode}}
</div>
8/11/2015 9:42 PM
5 of 22
http://www.codeproject.com/Articles/891718/AngularJS-Interview-Ques...
function Function1($scope)
{
$scope.ControllerName = "Function1";
}
function Function2($scope)
{
$scope.ControllerName = "Function2";
}
Now to attach the above controllers to HTML UI we need to use ng-controller directive. For instance you can see in
the below code snippet how ng-controller directive attaches function1 with div1 tag and function2 with div2
tag.
Hide Copy Code
So this is what happens internally. Once the HTML DOM is created Angular parser starts running on the DOM and
following are the sequence of events:The parser first finds ng-controller directive which is pointing to Function1. He creates a new instance of
$scope object and connects to the div1 UI.
The parser then starts moving ahead and encounters one more ng-controller directive which is pointing to
Function2. He creates a new instance of $scope object and connects to the div2 UI.
Now once the instances are created, below is a graphical representation of the same. So the DIV1 HTML UI is binded
with function1 $scope instance and the DIV2 HTML UI is binded with function2 $scope instance. In other words
now anything changes in the $scope object the UI will be updated and any change in the UI will update the respective
$scope object.
8/11/2015 9:42 PM
6 of 22
http://www.codeproject.com/Articles/891718/AngularJS-Interview-Ques...
Let us understand how Angular does the same internally. Below is a simple Angular code which has multiple DIV
tags and every tag is attached to a controller. So let us understand step by step how angular will parse this and how
the $rootScope and $scope hierarchy is created.
The Browser first loads the above HTML page and creates a DOM (Document object model) and Angular runs over
the DOM.Below are the steps how Angular creates the rootscope and scope objects.
Step 1:- Angular parser first encounters the ng-app directive and creates a $rootScope object in memory.
Step 2:- Angular parser moves ahead and finds the expression {{SomeValue}}. It creates a variable
Step 3:- Parser then finds the first DIV tag with ng-controller directive which is pointing to Function1
controller. Looking at the ng-controller directive it creates a $scope object instance for Function1
controller. This object it then attaches to $rootScope object.
Step 4:- Step 3 is then repeated by the parser every time it finds a ng-controller directive tag. Step 5 and Step
6 is the repetition of Step 3.
If you want to test the above fundamentals you can run the below sample Angular code. In the below sample code we
have created controllers Function1 and Function2. We have two counter variables one at the root scope level and
other at the local controller level.
Hide Copy Code
8/11/2015 9:42 PM
7 of 22
http://www.codeproject.com/Articles/891718/AngularJS-Interview-Ques...
<script language="javascript">
function Function1($scope, $rootScope)
{
$rootScope.Counter = (($rootScope.Counter || 0) + 1);
$scope.Counter = $rootScope.Counter;
$scope.ControllerName = "Function1";
}
function Function2($scope, $rootScope)
{
$rootScope.Counter = (($rootScope.Counter || 0) + 1);
$scope.ControllerName = "Function2";
}
var app = angular.module("myApp", []); // creating a APP
app.controller("Function1", Function1); // Registering the VM
app.controller("Function2", Function2);
</script>
Below is the HTML code for the same. You can we have attached Function1 and Function2 two times with
ng-controller which means four instances will be created.
Hide Copy Code
Above is the output of the code you can see the global variable of root scope has be incremented four times because
four instances of $scope have been created inside $rootScope object.
8/11/2015 9:42 PM
8 of 22
http://www.codeproject.com/Articles/891718/AngularJS-Interview-Ques...
At the heart Angular framework is a parser. A parser which parses the Angular directives and renders HTML output.
Angular parser works in 3 steps:Step 1:- HTML browser parses the HTML and creates a DOM (Document Object Model).
Step 2:- Angular framework runs over this DOM looks at the Angular directives and manipulates the DOM
accordingly.
Step 3:- This manipulated is then rendered as HTML in the browser.
Now the above angular parsing is not so simple as it looks to be. It occurs in two phases Compile and Link. Firs the
compile phase occurs then the link phase.
In compile phase the angular parser starts parsing the DOM and whenever the parser encounters a directive it create
a function. These functions are termed as template or compiled functions. In this phase we do not have access to the
$scope data.
In the link phase the data i.e. ($scope) is attached to the template function and executed to get the final HTML output.
function CustomerController($scope,$http)
{
$scope.Add = function()
{
$http({ method: "GET", url: "http://localhost:8438/SomeMethod"
status, headers, config)
{
// Here goes code after success
}).success(function (data,
8/11/2015 9:42 PM
9 of 22
http://www.codeproject.com/Articles/891718/AngularJS-Interview-Ques...
}
}
}
$http service API needs atleast three things:First what is the kind of call POST or GET.
Second the resource URL on which the action should happen.
Third we need to define the success function which will be executed once we get the response from the
server.
Hide Copy Code
function CustomerController($scope,$http)
{
// your consumer would be using the scope and http objects
}
function FileLogger()
{
this.Log = function () {
alert("File logger");
};
}
8/11/2015 9:42 PM
10 of 22
http://www.codeproject.com/Articles/891718/AngularJS-Interview-Ques...
function EventLogger()
{
this.Log = function () {
alert("Event viewer logger");
};
}
Now lets say you have a Customer class who wants to use the Logger classes. Now which Logger class to use
depends on configuration.
So the code of Customer is something as shown below. So depending on the configuration Customer class either
creates FileLogger or it creates EventLogger object.
Hide Copy Code
But with DI our code becomes something as shown below. The Customer class says he is not worried from where
the Logger object comes and which type of Logger objects are needed .He just wants to use the Logger object.
Hide Copy Code
With this approach when a new Logger object gets added the Customer class does not have to worry about the
new changes because the dependent objects are injected by some other system.
The second benefit of DI is testing. Lets say you want to test the Customer class and you do not have internet
connection. So your $http object method calls can throw errors. But now you can mock a fake $http object and
run your customer class offline without errors.The fake object is injected using DI.
So you can use the service method of the application and tie up the EventLogger object with the Logger input
parameter of the Customer class.
Hide Copy Code
So when the controller object is created the EventLogger object is injected automatically in the controller class.
8/11/2015 9:42 PM
11 of 22
http://www.codeproject.com/Articles/891718/AngularJS-Interview-Ques...
function HitCounter()
{
var i = 0;
this.Hit = function ()
{
i++;
alert(i);
};
}
This HitCounter class object is injected in MyClass class as shown in the below code.
Hide Copy Code
Below code advises the Angular framework to inject HitCounter class instance in the MyClass class. Read the last
line of the below code specially which says to inject the inject the HitCounter instance.
Hide Copy Code
Now lets say that the Controller MyClass is attached to twodiv tags as shown in the below figure.
So two instances of MyClass will be created. When the first instance of MyClass is created a HitCounter object
instance is created and injected in to MyClass first instance.
When the second instance of MyClass is created the same HitCounter object instance is injected in to second
instance of MyClass.
Again I repeat the same instance is injected in to the second instance, new instances are not created.
8/11/2015 9:42 PM
12 of 22
http://www.codeproject.com/Articles/891718/AngularJS-Interview-Ques...
If you execute the above code you will see counter values getting incremented even if you are coming through
different controller instances.
8/11/2015 9:42 PM
13 of 22
http://www.codeproject.com/Articles/891718/AngularJS-Interview-Ques...
function Customer()
{
this.CustomerCode = "1001";
this.CustomerName = "Shiv";
}
function Phone()
{
this.PhoneNumber = "";
}
function Address()
{
this.Address1 = "";
this.Address2 = "";
}
So now we would create different types of Customer object types using the combination of Address and Phones
object.
We would like to combine Customer with Address and create a Customer object which has Address
collection inside it.
Or must be we would like to create Customer object with Phone objects inside it.
Or must be Customer object with both Phone and Address objects.
In other words we would like to have different permutation and combination to create different types of Customer
objects.
So lets start from bottom. Lets create two factory functions one which creates Address object and the other which
creates Phone objects.
Hide Copy Code
functionCreateAddress()
{
var add = new Address();
return add;
}
functionCreatePhone()
{
var phone = new Phone();
return phone;
}
Now lets create a main factory function which uses the above two small factory functions and gives us all the
necessary permutation and combination.
In the below factory you can see we have three functions:CreateWithAddress which creates Customer with Address objects inside it.
CreateWithPhone which creates Customer object with Phone objects inside it.
CreateWithPhoneAddress which creates Customer object with aggregated Phone and Address objects.
Hide Copy Code
function CreateCustomer() {
return {
8/11/2015 9:42 PM
14 of 22
http://www.codeproject.com/Articles/891718/AngularJS-Interview-Ques...
CreateWithAddress: function () {
varcust = new Customer();
cust.Address = CreateAddress();
returncust;
},
CreateWithPhone: function () {
varcust = new Customer();
cust.Phone = {};
cust.Phone = CreatePhone();
returncust;
}
,
CreateWithPhoneAddress: function () {
debugger;
varcust = new Customer();
cust.Phone = CreatePhone();
cust.Address = CreateAddress();
returncust;
}
}
}
Below is a simple CustomerController which takes CustomerFactory as the input. Depending on TypeOfCustomer
it creates with Address , Phones or both of them.
Hide Copy Code
functionCustomerController($scope, Customerfactory)
{
$scope.Customer = {};
$scope.Init = function(TypeofCustomer)
{
if (TypeofCustomer == "1")
{
$scope.Customer = Customerfactory.CreateWithAddress();
}
if (TypeofCustomer == "2")
{
$scope.Customer = Customerfactory.CreateWithPhone();
}
if (TypeofCustomer == "3") {
$scope.Customer = Customerfactory.CreateWithPhoneAddress();
}
}
}
You also need to tell Angular that the CreateCustomer method needs to be passed in the input. For that we need to
call the Factory method and map the CreateCustomer method with the input parameter CustomerFactory for
dependency injection.
Hide Copy Code
8/11/2015 9:42 PM
15 of 22
http://www.codeproject.com/Articles/891718/AngularJS-Interview-Ques...
When you define DI using a factory it does not create a instance. It just passes the method and later the consumer
internally has to make calls to the factory for object instances.
Hide Copy Code
app.factory("Customerfactory", CreateCustomer);
Below is a simple image which shows visually how DI process for Service is different than Factory.
Factory
Service
Usage
Instance
For instance below is a simple form which has two text boxes. We have used HTML 5 required validation attribute
and a form element of type email.
Hide Copy Code
Below are some example of new form elements introduced in HTML 5 and Angular works with almost all of them :-
8/11/2015 9:42 PM
16 of 22
http://www.codeproject.com/Articles/891718/AngularJS-Interview-Ques...
Color.
Date
Datetime-local
Email
Time
Url
Range
Telephone
Number
Search
When you run the above HTML inside a browser which understands HTML 5 , you will see your validations and form
types in actions as shown in the below browser screen shot.
Angular leverages HTML 5 validation attributes and new HTML 5 form elements. Now if we want Angular to handle
validation we need first stop HTML 5 to do validation. So for that the first step is to specify novalidate attribute on
the form tag.
Hide Copy Code
So now the HTML will not fire those validations it will be routed to the Angular engine to further take actions.
In other words when end user fills data in the HTML UI , validation events are routed to Angular framework and
depending on scenario Angular sets a field called as $Valid. So if the validations are fine it sets it to True or else its
sets it to False.
So you can see in the below code we have attached the angular controller and models to the text boxes. Watch the
code of the button it has ng-disabled attribute which is set via the $Valid property in a NEGATED fashion.
Negated fashion means when there is no error it should enable the button and when there are errors that means its
false it should disable the button.
Hide Copy Code
8/11/2015 9:42 PM
17 of 22
http://www.codeproject.com/Articles/891718/AngularJS-Interview-Ques...
To check for a specific field you need to use the below DOM code.
Hide Copy Code
!frm1.CustomerName.$valid
<script src="~/Scripts/angular-route.js"></script>
app.config(['$routeProvider',
function ($routeProvider) {;
$routeProvider.
when('/Home, {
templateUrl: 'Yoursite/Home',
controller: 'HomeController'
}).
when('/Search', {
templateUrl: YourSite/Search',
controller: 'SearchController'
}).
otherwise({
redirectTo: '/'
});
}]);
Home
Search
Step 5: - Define sections where to load the view.
8/11/2015 9:42 PM
18 of 22
http://www.codeproject.com/Articles/891718/AngularJS-Interview-Ques...
Once the action comes to the router provider it needs a place holder to load views. Thats defined by using the
ng-view tag on a HTML element. You can see in the below code we have created a DIV tag with a place holder. So
the view will load in this section.
Hide Copy Code
So if we summarize angular routing is a three step process (Below is a visual diagram for the same): Step 1: - End user clicks on a hyperlink or button and generates action.
Step 2: - This action is routed to the route provider.
Step 3: - Router provider scans the URL and loads the view in the place holder defined by ng-view attribute.
<div id=footercompany-copy-right></div>
To create a custom directive we need to use the directive function to register the directive with angular application.
When we call the register method of directive we need to specify the function which will provide the logic for that
directive.
For example in the below code we have created a copy right directive and it returns a copy right text.
Please note app is an angular application object which has been explained in the previous sections.
Hide Copy Code
app.directive('companyCopyRight', function ()
{
return
{
template: '@CopyRight questpond.com '
};
});
The above custom directive can be later used in elements as shown in below code.
8/11/2015 9:42 PM
19 of 22
http://www.codeproject.com/Articles/891718/AngularJS-Interview-Ques...
<div ng-controller="CustomerViewModel">
<div company-copy-right></div>
</div>
app.directive('companyCopyRight', function ()
{
return
{
template: '@CopyRight questpond.com '
};
});
Later when this directive is consumed inside HTML before each capital letter of camel case we need to insert a - as
specified in the below code.
Hide Copy Code
<div company-copy-right></div>
If you are making a one letter prefix like copyright its very much possible that tomorrow if HTML team creates a tag
with the same name, it will clash with your custom directive. Thats why angular team recommends camel case which
inserts a - in between to avoid further collision with future HTML tags.
myapp.directive('userinfo', function()
8/11/2015 9:42 PM
20 of 22
http://www.codeproject.com/Articles/891718/AngularJS-Interview-Ques...
{
var directive = {};
directive.restrict = 'E';
directive.template = "User : {{user.firstName}} {{user.lastName}}";
return directie;
});
The restrict property is set to E which means that this directive can only be used at element level as shown in the
code snippet below.
Hide Copy Code
<userinfo></userinfo>
If you try to use it at an attribute level as shown in the below code it will not work.
Hide Copy Code
<div userinfo></div>
directive.restrict = 'EA';
directive.templateUrl = "/templates/footer.html";
License
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)
8/11/2015 9:42 PM
21 of 22
http://www.codeproject.com/Articles/891718/AngularJS-Interview-Ques...
Share
EMAIL
Spacing Compact
Noise Low
Layout Normal
Go
Per page 50
Update
NiceOne
gvinaya
4-Aug-15 11:46
8/11/2015 9:42 PM
22 of 22
http://www.codeproject.com/Articles/891718/AngularJS-Interview-Ques...
My vote of 5
arif188zaman
24-Jul-15 17:40
My vote of 5
docomo1
19-May-15 4:18
arpit jain
15-May-15 0:25
Thanks
Close Man
11-May-15 1:44
My vote of 5
WesMcGJr
13-Apr-15 4:46
Sibeesh Passion
8-Apr-15 18:54
General
News
Suggestion
Question
Refresh
Bug
Answer
Joke
Rant
Admin
Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.
Select Language
8/11/2015 9:42 PM