Skip to content

Commit 4a5d7b9

Browse files
committed
Update README.md
1 parent 39f6336 commit 4a5d7b9

File tree

1 file changed

+36
-32
lines changed

1 file changed

+36
-32
lines changed

README.md

Lines changed: 36 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -2,38 +2,42 @@
22

33

44
### 1. Basics
5-
- Why to use AngularJS?
6-
- What are the advantage of AngularJS?
7-
- Please explain what is controller/model/view in angularjs?
8-
- Please tell about life cycle of angularjs application?
9-
- What is jQLite/jQuery Lite?
10-
- How to access jQLite?
11-
- What are the AngularJS features?
12-
- When dependent modules of a module are loaded?
13-
- What is Angular’s prefixes $ and $$?
14-
- What is the role of ng-app, ng-init and ng-model directives?
15-
- What are different ways to invoke a directive?
16-
- What is restrict option in directive?
17-
- Can you define multiple restrict options on a directive?
18-
- What is scope in AngularJS?
19-
- What is $scope and $rootScope?
20-
- What is scope hierarchy?
21-
- What is the difference between $scope and scope?
22-
- How AngularJS compilation is different from other JavaScript frameworks?
23-
- What are Compile, Pre and Post linking in AngularJS?
24-
- Is it a good or bad practice to use AngularJS together with jQuery?
25-
- If you were to migrate from Angular 1.4 to 1.5, what is the main thing that would need refactoring?
26-
- What is the difference between one-way binding and two-way binding?
27-
- How would you specify that a scope variable should have one-time binding only?
28-
- What directive would you use to hide elements from the HTML DOM by removing them from that DOM not changing their styling?
29-
- How do you reset a $timeout, $interval(), and disable a $watch()?
30-
- What is $scope in AngularJS?
31-
- What is difference between $scope and scope?
32-
- How would you validate a text input field for a twitter username, including the @ symbol?
33-
- How do you hide an HTML element via a button click in AngularJS?
34-
- 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?
35-
- How do you disable a button depending on a checkbox’s state?
36-
- Assuming "form" is an NgForm object, which property is used to retrieve the form values?
5+
6+
|Sl.No| Questions |
7+
|-----|------------------------------------------------|
8+
| 01. |[Why to use AngularJS?](#q-why-to-use-angularjs)|
9+
| 02. |[What are the advantage of AngularJS?](#q-what-are-the-advantage-of-angularjs)|
10+
| 03. |[Please explain what is controller/model/view in angularjs?](#q-please-explain-what-is-controller-model-view-in-angularjs)|
11+
| 04. |[Please tell about life cycle of angularjs application?](#q-please-tell-about-life-cycle-of-angularjs-application)|
12+
| 05. |[What is jQLite/jQuery Lite?](#q-what-is-jqlite-jquery-lite)|
13+
| 06. |[How to access jQLite?](#q-how-to-access-jqlite)|
14+
| 07. |[What are the AngularJS features?](#q-what-are-the-angularjs-features)|
15+
| 08. |[When dependent modules of a module are loaded?](#q-when-dependent-modules-of-a-module-are-loaded)|
16+
| 09. |[What is Angular’s prefixes $ and $$?](#q-what-is-angular-s-prefixes-and)|
17+
| 10. |[What is the role of ng-app, ng-init and ng-model directives?](#q-what-is-the-role-of-ng-app-ng-init-and-ng-model-directives)|
18+
| 11. |[What are different ways to invoke a directive?](#q-what-are-different-ways-to-invoke-a-directive)|
19+
| 12. |[What is restrict option in directive?](#q-what-is-restrict-option-in-directive)|
20+
| 13. |[Can you define multiple restrict options on a directive?](#q-can-you-define-multiple-restrict-options-on-a-directive)|
21+
| 14. |[What is scope in AngularJS?](#q-what-is-scope-in-angularjs)|
22+
| 15. |[What is $scope and $rootScope?](#q-what-is-scope-and-rootscope)|
23+
| 16. |[What is scope hierarchy?](#q-what-is-scope-hierarchy)|
24+
| 17. |[What is the difference between $scope and scope?](#q-what-is-the-difference-between-scope-and-scope)|
25+
| 18. |[How AngularJS compilation is different from other JavaScript frameworks?](#q-how-angularjs-compilation-is-different-from-other-javascript-frameworks)|
26+
| 19. |[What are Compile, Pre and Post linking in AngularJS?](#q-what-are-compile-pre-and-post-linking-in-angularjs)|
27+
| 20. |[Is it a good or bad practice to use AngularJS together with jQuery?](#q-is-it-a-good-or-bad-practice-to-use-angularjs-together-with-jquery)|
28+
| 21. |[If you were to migrate from Angular 1.4 to 1.5, what is the main thing that would need refactoring?](#q-if-you-were-to-migrate-from-angular-14-to-15-what-is-the-main-thing-that-would-need-refactoring)|
29+
| 22. |[What is the difference between one-way binding and two-way binding?](#q-what-is-the-difference-between-one-way-binding-and-two-way-binding)|
30+
| 23. |[How would you specify that a scope variable should have one-time binding only?](#q-how-would-you-specify-that-a-scope-variable-should-have-one-time-binding-only)|
31+
| 24. |[What directive would you use to hide elements from the HTML DOM by removing them from that DOM not changing their styling?](#q-what-directive-would-you-use-to-hide-elements-from-the-html-dom-by-removing-them-from-that-dom-not-changing-their-styling)|
32+
| 25. |[How do you reset a $timeout, $interval(), and disable a $watch()?](#q-how-do-you-reset-a-timeout-interval-and-disable-a-watch)|
33+
| 26. |[What is $scope in AngularJS?](#q-what-is-scope-in-angularjs)|
34+
| 27. |[What is difference between $scope and scope?](#q-what-is-difference-between-scope-and-scope)|
35+
| 28. |[How would you validate a text input field for a twitter username, including the @ symbol?](#q-how-would-you-validate-a-text-input-field-for-a-twitter-username-including-the-symbol)|
36+
| 29. |[How do you hide an HTML element via a button click in AngularJS?](#q-how-do-you-hide-an-html-element-via-a-button-click-in-angularjs)|
37+
| 30. |[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?](#q-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)|
38+
| 31. |[How do you disable a button depending on a checkbox’s state?](#q-how-do-you-disable-a-button-depending-on-a-checkbox-s-state)|
39+
| 32. |[Assuming "form" is an NgForm object, which property is used to retrieve the form values?](#q-assuming-form-is-an-ngform-object-which-property-is-used-to-retrieve-the-form-values)|
40+
3741

3842

3943
### 2. Architecture

0 commit comments

Comments
 (0)