AngularJS

  Home  Client Side Scripting  AngularJS


“Sizzle Selector Engine job test questions and answers guide. The one who provides the best answers with a perfect presentation is the one who wins the job hunting race. Learn Sizzle JQuery Engine and get preparation for the new job”



57 AngularJS Questions And Answers

2⟩ Tell me which browsers does Angular work with?

We run our extensive test suite against the following browsers: Safari, Chrome, Firefox, Opera, IE8, IE9 and mobile browsers (Android, Chrome Mobile, iOS Safari). See Internet Explorer Compatibility for more details in supporting legacy IE browsers.

 201 views

4⟩ Do you know what is Angulars performance like?

The startup time heavily depends on your network connection, state of the cache, browser used and available hardware, but typically we measure bootstrap time in tens or hundreds of milliseconds.

The runtime performance will vary depending on the number and complexity of bindings on the page as well as the speed of your backend (for apps that fetch data from the backend). Just for an illustration we typically build snappy apps with hundreds or thousands of active bindings.

 202 views

5⟩ Tell me does Angular use the jQuery library?

Yes, Angular can use jQuery if it's present in your app when the application is being bootstrapped. If jQuery is not present in your script path, Angular falls back to its own implementation of the subset of jQuery that we call jQLite.

 172 views

7⟩ What is AngularJS?

AngularJS is an open-source JavaScript framework, maintained by Google, that assists with running single-page applications. Its goal is to augment browser-based applications with model–view–controller capability, in an effort to make both development and testing easier

 170 views

8⟩ Does Angular use the jQuery library?

Yes, Angular can use jQuery if you have included the jQuery library.

IF Not, Angular falls back to its own implementation of the subset of jQuery that we call jQLite.

 184 views

13⟩ What is controller in AngularJS?

Controller is constructor function in Angular Controller.

When a Controller is attached to the DOM with use the ng-controller, Angular will instantiate a new Controller object using constructor function.

 185 views