Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

AngularJS

Check "Answers" folder for answers.

  • 01. List at least three ways to communicate between modules of your application using core AngularJS functionality.
  • 02. Which means of communication between modules of your application are easily testable?
  • 03. Describe how e2e testing of AngularJS applications work.
  • 04. Explain if the code is synchronous or asynchronous and how it works. [Refer answers folder for program]
  • 05. When a scope is terminated, two similar “destroy” events are fired. What are they used for, and why are there two?
  • 06. How do you reset a “$timeout”, and disable a "$watch()"?
  • 07. Name and describe the phases of a directive definition function execution, or describe how directives are instantiated.
  • 08. How does interpolation, e.g. "{{ someModel }}", actually work?
  • 09. How does the digest phase work?
  • 10. List a few ways to improve performance in an AngularJS app.
  • 11. What is $rootScope and how does it relate to $scope?