Skip to content

Commit fe08b7e

Browse files
committed
Update README.md
1 parent ceac158 commit fe08b7e

File tree

1 file changed

+23
-14
lines changed

1 file changed

+23
-14
lines changed

README.md

Lines changed: 23 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
## AngularJS ( v1.7.x ) Interview Questions with Example
22

3+
34
### 1. Basics
45
- Why to use AngularJS?
56
- What are the advantage of AngularJS?
@@ -10,12 +11,16 @@
1011
- What are the AngularJS features?
1112
- When dependent modules of a module are loaded?
1213
- What is Angular’s prefixes $ and $$?
13-
- What are Filters in AngularJS?
14-
- What are Directives in AngularJS?
1514
- What is the role of ng-app, ng-init and ng-model directives?
1615
- What are different ways to invoke a directive?
1716
- What is restrict option in directive?
1817
- 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?
1924

2025

2126
### 2. Architecture
@@ -28,17 +33,27 @@
2833
- Do you use some sort of angular style guides?
2934
- What is dependency injection? Explain difference between inline and explicit annotation?
3035
- What is auto bootstrap process in AngularJS?
36+
- What is manual bootstrap process in AngularJS?
37+
- How AngularJS is compiled?
38+
3139

3240
### 3. Directives
33-
- What is directive in angularjs?
34-
- List some built-in directives
35-
- Explain difference between 'compile' and 'link' callbacks in directive definition
36-
- List types of scopes directive can have
41+
- What is directive in angularjs?
42+
- List some built-in directives
43+
- Explain difference between 'compile' and 'link' callbacks in directive definition
44+
- List types of scopes directive can have?
45+
- How Directives are compiled?
46+
47+
48+
### 4. Filters
49+
- What are Filters in AngularJS?
50+
3751

38-
### 4. How it works
52+
### 5. How it works
3953
- How works `$digest`?
4054

41-
### 5. Performance
55+
56+
### 6. Performance
4257
- What is the best practice to build your application
4358
- When it is necessary or whether it is necessary to use `$scope.$apply`
4459

@@ -476,12 +491,6 @@ level-Three: post link
476491
level-Two: post link
477492
level-One: post link
478493
```
479-
480-
#### Q. ***What is the role of ng-app, ng-init and ng-model directives?***
481-
* **ng-app** - Initialize the angular app.
482-
* **ng-init** - Initialize the angular app data.
483-
* **ng-model** - Bind the html element
484-
485494
486495
#### Q. ***What are the directives in angular JS ?***
487496
AngularJS directives are a combination of AngularJS template markups (HTML attributes or elements, or

0 commit comments

Comments
 (0)