GithubHelp home page GithubHelp logo

tsigie / angularjs-interview-q-a Goto Github PK

View Code? Open in Web Editor NEW

This project forked from mrkem598/angularjs-interview-q-a

0.0 1.0 0.0 272 KB

:memo: :fire: :school: Have an upcoming AngularJS interview or just learning AngularJS, Here is list of AngularJS interview questions to help you prepare for your AngularJS technical interview. Can you answer them all?

Home Page: https://mrkem598.github.io/AngularJS-Interview-Q-A/

License: MIT License

angularjs-interview-q-a's Introduction


🔥 downloaddownload 🔥


     ##    common and proven success AngularJS-Interview-Questions


1. What are the basics steps to unit test an AngulatJS filter?


Answer:

  1. Inject the module that contains the filter.
  2. Provide any mocks that the filter relies on.
  3. Get an instance of the filter using $filter('yourFilterName').
  4. Assert your expectations.

Dependency injection is a powerful software design pattern that Angular employs to compose responsibilities through an intrinsic interface. However, for those new to the process, it can be puzzling where you need to configure and mock these dependencies when creating your isolated unit tests. The open-source project “Angular Test Patterns” is a free resource that is focused on dispelling such confusion through high-quality examples.

This question is useful since it can give you a feel for how familiar the candidate is with automated testing (TDD, BDD, E2E), as well as open up a conversation about approaches to code quality.

Source:

https://github.com/daniellmb/angular-test-patterns/blob/master/patterns/filter.md

https://docs.angularjs.org/guide/unit-testing


2. What should be the maximum nomber of concurrent "watches"? How would you keep an eye on that number?


Answer:

To reduce memory consumption and improve performance it is a good idea to limit the number of watches on a page to 2,000. A utility called ng-stats can help track your watch count and digest cycles.

Jank happens when your application cannot keep up with the screen refresh rate. To achieve 60 frames-per-second, you only have about 16 milliseconds for your code to execute. It is crucial that the scope digest cycles are as short as possible for your application to be responsive and smooth. Memory use and digest cycle performance are directly affected by the number of active watches. Therefore, it is best to keep the number of watches below 2,000. The open-source utility ng-stats gives developers insight into the number of watches Angular is managing, as well as the frequency and duration of digest cycles over time.

Caution: Be wary of relying on a “single magic metric” as the golden rule to follow. You must take the context of your application into account. The number of watches is simply a basic health signal. If you have many thousands of watches, or worse, if you see that number continue to grow as you interact with your page. Those are strong indications that you should look under the hood and review your code.

This question is valuable as it gives insight into how the candidate debugs runtime issues while creating a discussion about performance and optimization.

Sources: https://github.com/kentcdodds/ng-stats

http://jankfree.org


3. How do you share data between controllers?


Answer:

Create an AngularJS service that will hold the data and inject it inside of the controllers.

Using a service is the cleanest, fastest and easiest way to test. However, there are couple of other ways to implement data sharing between controllers, like: – Using events – Using $parent, nextSibling, controllerAs, etc. to directly access the controllers – Using the $rootScope to add the data on (not a good practice) The methods above are all correct, but are not the most efficient and easy to test. There is a good video explanation on egghead.io.


4. What is the difference between ng-show/ng-hide and ng-if directives?


Answer:

ng-show/ng-hide will always insert the DOM element, but will display/hide it based on the condition. ng-if will not insert the DOM element until the condition is not fulfilled.

ng-if is better when we needed the DOM to be loaded conditionally, as it will help load page bit faster compared to ng-show/ng-hide.

We only need to keep in mind what the difference between these directives is, so deciding which one to use totally depends on the task requirements.


5. What is a digest cycle in AngularJS?


Answer:

In each digest cycle Angular compares the old and the new version of the scope model values. The digest cycle is triggered automatically. We can also use $apply() if we want to trigger the digest cycle manually.

For more information, take a look in the ng-book explanation: The Digest Loop and $apply


6. Where should we implement the DOM manipulation in AngularJS?


Answer:

In the directives. DOM Manipulations should not exist in controllers, services or anywhere else but in directives.


7. Is it a good or bad practice to use AngularJS together with jQuery?


Answer:

It is definitely a bad practice. We need to stay away from jQuery and try to realize the solution with an AngularJS approach. jQuery takes a traditional imperative approach to manipulating the DOM, and in an imperative approach, it is up to the programmer to express the individual steps leading up to the desired outcome.

AngularJS, however, takes a declarative approach to DOM manipulation. Here, instead of worrying about all of the step by step details regarding how to do the desired outcome, we are just declaring what we want and AngularJS worries about the rest, taking care of everything for us.


8. If you were to migrate from Angular 1.4 to 1.5, what is the main thing that would need refactoring?


Answer:

Changing .directive to .component to adapt to the new Angular 1.5 components


9. How would you specify that a scope variable should have one-time binding only?


Answer:

By using “::” in front of it. This allows the check if the candidate is aware of the available variable bindings in AngularJS.


10. What is the difference between one-way binding and two-way binding?


Answer?

– One way binding implies that the scope variable in the html will be set to the first value its model is bound to (i.e. assigned to)

– Two way binding implies that the scope variable will change it’s value everytime its model is assigned to a different value


11. Explain how $scope.$apply() works?


Answer:

It will re-evaluates all the declared ng-models and applies the change to any that have been altered (i.e. assigned to a new value)

Explanation: $scope.$apply() is one of the core angular functions that should never be used explicitly, it forces the angular engine to run on all the watched variables and all external variables and apply the changes on their values Source: https://docs.angularjs.org/api/ng/type/$rootScope.Scope


12. What directive would you use to hide elements from the HTML DOM by removing them from that DOM not changing their styling?


Answer:

The ngIf Directive, when applied to an element, will remove that element from the DOM if it’s condition is false.


13. What makes the angular.copy() method so powerful?


Answer:

It creates a deep copy of the variable.

A deep copy of a variable means it doesn’t point to the same memory reference as that variable. Usually assigning one variable to another creates a “shallow copy”, which makes the two variables point to the same memory reference. Therefore if we change one, the other changes as well

Sources:https://docs.angularjs.org/api/ng/function/angular.copyhttps://en.wikipedia.org/wiki/Object_copying


14. How would you make an Angular service return a promise? Write a code snippet as an example?


Answer:

To add promise functionality to a service, we inject the “$q” dependency in the service, and then use it like so:

angular.factory('testService', function($q){
return {
	getName: function(){
		var deferred = $q.defer();

		//API call here that returns data
		testAPI.getName().then(function(name){
			deferred.resolve(name)
		})

		return deferred.promise;
	}
}
  })

The $q library is a helper provider that implements promises and deferred objects to enable asynchronous functionality

Source: https://docs.angularjs.org/api/ng/service/$q


15. What is the role of services in AngularJS and name any services made available by default?


Answer:

– AngularJS Services are objects that provide separation of concerns to an AngularJS app. – AngularJS Services can be created using a factory method or a service method. – Services are singleton components. All components of the application (into which the service is injected) will work with single instance of the service. – An AngularJS service allows developing of business logic without depending on the View logic which will work with it.

Few of the inbuilt services in AngularJS are: – the $http service: The $http service is a core Angular service that facilitates communication with the remote HTTP servers via the browser’s XMLHttpRequest object or via JSONP – the $log service: Simple service for logging. Default implementation safely writes the message into the browser’s console – the $anchorScroll: it scrolls to the element related to the specified hash or (if omitted) to the current value of $location.hash() Why should one know about AngularJS Services, you may ask. Well, understanding the purpose of AngularJS Services helps bring modularity to AngularJS code. Services are the best may to evolve reusable API within and AngularJS app

Overview:

AngularJS Services help create reusable components. A Service can be created either using the service() method or the factory() method. A typical service can be injected into another service or into an AngularJS Controller. ## Source: – https://docs.angularjs.org/guide/serviceshttp://www.tutorialspoint.com/angularjs/angularjs_services.htm


16. When creating a directive, it can be used in several different ways in the view. Which ways for using a directive do you know? How do you define the way your directive will be used?


Answer:

When you create a directive, it can be used as an attribute, element or class name. To define which way to use, you need to set the restrict option in your directive declaration.

The restrict option is typically set to:

‘A’ – only matches attribute name ‘E’ – only matches element name ‘C’ – only matches class name

These restrictions can all be combined as needed:

‘AEC’ – matches either attribute or element or class name

For more information, feel free to check out the AngularJS documentation.


17. When should you use an attribute Vs an element?


Answer:

Use an element when you are creating a component that is in control of the template. Use an attribute when you are decorating an existing element with new functionality.

This topic is important so developers can understand the several ways a directive can be used inside a view and when to use each way.

Sources: https://docs.angularjs.org/api/ng/service/$compile#directive-definition-object


18. How do you reset a $timeout, $interval(), and disable a $watch()?


Answer:

To reset a timeout and/or $interval, assign the result of the function to a variable and then call the .cancel() function.

	var customTimeout = $timeout(function () {

	 // arbitrary code
	}, 55);

	$timeout.cancel(customTimeout);                                                                                                                                                    

to disable $watch(), we call its deregistration function. $watch() then returns a deregistration function that we store to a variable and that will be called for cleanup

	var deregisterWatchFn = $scope.$on(‘$destroy’, function () {
			// we invoke that deregistration function, to disable the watch
    		deregisterWatchFn();
		});

19. Explain what is a $scope in AngularJS is?


Answer:

Scope is an object that refers to the application model. It is an execution context for expressions. Scopes are arranged in hierarchical structure which mimic the DOM structure of the application. Scopes can watch expressions and propagate events. Scopes are objects that refer to the model. They act as glue between controller and view.

This question is important as it will judge a persons knowledge about a $scope object, and it is one of the most important concepts in AngularJS. Scope acts like a bridge between view and model.

Source: https://docs.angularjs.org/guide/scope


20. What are Directives?


Answer:

Directives are markers on a DOM element (such as an attribute, element name, comment or CSS class) that tell AngularJS’s HTML compiler ($compile) to attach a specified behavior to that DOM element (e.g. via event listeners), or even to transform the DOM element and its children. Angular comes with a set of these directives built-in, like ngBind, ngModel, and ngClass. Much like you create controllers and services, you can create your own directives for Angular to use. When Angular bootstraps your application, the HTML compiler traverses the DOM matching directives against the DOM elements.

This question is important because directives define the UI while defining a single page app. You need to be very clear about how to create a new custom directive or use the existing ones already pre-build in AngularJS.

Source: https://docs.angularjs.org/guide/directive


21. What is DDO Directive Difinition Object?


Answer:

DDO is an object used while creating a custome directive. A standard DDO object has following parameters.

	var directiveDefinitionObject = {
			priority: 0,
		  template: '<div></div>', // or // function(tElement, tAttrs) { ... },
			 // or
			 // templateUrl: 'directive.html', // or // function(tElement, tAttrs) { ... },
		 transclude: false,
		 restrict: 'A',
			templateNamespace: 'html',
		 scope: false,
		  controller: function($scope, $element, $attrs, $transclude, otherInjectables) { ... },
		  controllerAs: 'stringIdentifier',
		  bindToController: false,
		  require: 'siblingDirectiveName', // or // ['^parentDirectiveName', '?optionalDirectiveName', '?
		  ^optionalParent'],
			  compile: function compile(tElement, tAttrs, transclude) {
		  return {
			    pre: function preLink(scope, iElement, iAttrs, controller) { ... },
    		    post: function postLink(scope, iElement, iAttrs, controller) { ... }
      		}
  			// or
 			 // return function postLink( ... ) { ... }
		 },
		 // or
		 // link: {
			//  pre: function preLink(scope, iElement, iAttrs, controller) { ... },
			//  post: function postLink(scope, iElement, iAttrs, controller) { ... }
			// }
		 // or
		 // link: function postLink( ... ) { ... }
		  };"

This question mainly judges whether candidate knows about creating custom directives.

Read more at https://docs.angularjs.org/guide/directive


22. What is a singleton pattern and where we can find it in AngularJS?


Answer:

Is a great pattern that restricts the use of a class more than once. We can find singleton pattern in angular in dependency injection and in the services.

In a sense, if you do 2 times ‘new Object()‘ without this pattern, you will be alocating 2 pieces of memory for the same object. With singleton pattern, if the object exists, you reuse it.

Source: http://joelhooks.com/blog/2013/05/01/when-is-a-singleton-not-a-singleton/


23. What is an interceptor?


Answer:

An interceptor is a middleware code where all the $http requests go through. The interceptor is a factory that are registered in $httpProvider.


24. What are common uses of an interceptor in AngularJS?


Answer:

There are two types of requests that go through the interceptor, request and response (with requestError and responseError respectively). This piece of code is very useful for error handling, authentication or middleware in all the requests/responses.

Source: https://docs.angularjs.org/api/ng/service/$http


25. How would you programatically change or adapt the template of a directive before it is executed and transformed?


Answer:

You would use the compile function. The compile function gives you access to the directive’s template before transclusion occurs and templates are transformed, so changes can safely be made to DOM elements. This is very useful for cases where the DOM needs to be constructed based on runtime directive parameters. Source: https://docs.angularjs.org/api/ng/service/$compile


26. How would you validate a text input field for a twitter username, including the @ symbol?


Answer:

You would use the ngPattern directive to perform a regex match that matches Twitter usernames. The same principal can be applied to validating phone numbers, serial numbers, barcodes, zip codes and any other text input. Note: This directive is also added when the plain pattern attribute is used, with two differences: ngPattern does not set the pattern attribute and therefore HTML5 constraint validation is not available. The ngPattern attribute must be an expression, while the pattern value must be interpolated.

<script>
 angular.module('ngPatternExample', [])
		.controller('ExampleController', ['$scope', function($scope) {
 		 $scope.regex = '\\d+';
 }]);
</script>
<div ng-controller="ExampleController">
 <form name="form">
 <label for="regex">Set a pattern (regex string): </label>
 <input type="text" ng-model="regex" id="regex" />
 <br>
	<label for="input">This input is restricted by the current pattern: </label>
	<input type="text" ng-model="model" id="input" name="input" ng-pattern="regex" /><br>
	<hr>
	input valid? = <code>{{form.input.$valid}}</code><br>
 model = <code>{{model}}</code>
</form>
</div>

Source:https://docs.angularjs.org/api/ng/directive/ngPattern


27. How would you implement application-wide exception handling in your Angular app?


Answer:

Angular has a built-in error handler service called $exceptionHandler which can easily be overriden as seen below:

myApp.factory('$exceptionHandler', function($log, ErrorService) {
	 return function(exception, cause) {
    
    	if (console) {
      	  $log.error(exception);
      	  $log.error(cause);
  		  }

  			  ErrorService.send(exception, cause);
	 };
	 
});

This is very useful for sending errors to third party error logging services or helpdesk applications. Errors trapped inside of event callbacks are not propagated to this handler, but can manually be relayed to this handler by calling $exceptionHandler(e) from within a try catch block.


28. How do you hide an HTML element via a button click in AngularJS?


Answer:

You can do this by using the ng-hide directive in conjunction with a controller we can hide an HTML element on button click.

	<div ng-controller="MyCtrl">
		<button ng-click="hide()">Hide element</button>
		<p ng-hide="isHide">Hello World!</p>
	</div>	
	

function MyCtrl($scope){
	$scope.isHide = false;
	$scope.hide = function(){
	$scope.isHide = true;
	}
}

29. How would you react on model changes to trigger some further action? For instance, say you have an input text field called email and you want to trigger or execute some code as soon as a user starts to type in their email.


Answer:

We can achieve this using $watch function in our controller.

function MyCtrl($scope) {
	$scope.email = "";

	$scope.$watch("email", function(newValue, oldValue) {
		if ($scope.email.length > 0) {
			console.log("User has started writing into email");
		}
	});
	}

30. How do you disable a button depending on a checkbox’s state?


Answer:

We can use the ng-disabled directive and bind its condition to the checkbox’s state.

<body ng-app>
	<label><input type="checkbox" ng-model="checked"/>Disable Button</label>
	<button ng-disabled="checked">Select me</button>
</body>

31. In angular, what does the calls to the HTTP methods return ?


Answer:

In angular, calls to the HTTP methods actually return an observable and not a promise. You can think of an observable as a stream of events, and meeting values to anyone who has subscribed to it.


32. AngularJS comandline to generate e component from the terminal?


Answer:

In Angular we can generate component from the terminal by ngFor generater. If I want to create contact componenet, I would just run ng generate component contact and it will create all the necesory file for me and just update that to use it!


33. An operator that we can use to avoid any 404 error is?


Answer:

In Angular we can use ? to avoid any unecessory file not found response. Let say if we have a cantacts information and we did not give a photo url but if we write [src]=contact?.photoUrl it will say 404 even if photo was not added.


34. Using the Angular Http module to make a request, which method is used to listen for an emitted response?


Answer:

In Angular Http module to make a request, method is used to listen for an emitted response.Subscribe


35. What is the Router directive that can be placed on elements to navigate to a new route?


Answer:

Router directive that can be placed on elements to navigate to a new route is [routerLink].


36. Assuming "form" is an NgForm object, which property is used to retrieve the form values?


Answer:

The form value can be retrieved by [form.value].


37. An Angular class that used to create an instance that will be an argument to the request method of http is??


Answer:

[Request].


38. An Angular generator to generate api.service.spec.ts inside the shared componenet is ?


Answer:

[ng generat service shared/api].


39. A JSON Web Token consists of .... ?


Answer:

JSON Web Token consists of header, payload and signature. You can read more at https://jwt.io/


40. A JWT should be signed with a secret called ?


Answer:

High security password. Generating long, high-quality random passwords is not simple. You can easily generate one via this link https://www.grc.com/passwords.htm


41. Having the JWT token, what is the format of the Authorization header looks like?


Answer:

The authorization header should be Bearer [token].


License:


MIT Copyright (c) 2017 Mohammed Kemal

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.


🌹 Let's contribute and rock the Angular community. I have started with this and it's to all of us to add something to it and do more!!


angularjs-interview-q-a's People

Contributors

mrkem598 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.