You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,8 +8,8 @@ The goal here is to provide a complete guideline to get that job in angular
8
8
*[Know the Interviewer](#research-the-interviewer)
9
9
*[Beginners Level](beginners-level)
10
10
*[Beginners level: Terminology Related Questions](#what-category-questions-angular-terminology)
11
-
*[Beginners level: Doability Related Questions](#question-to-verify-you-did-some-work)
12
-
*[Beginners level: Understandability Related Questions](#question-about-understanding)
11
+
*[Beginners level: Doability Related Questions](#how-category-verifies-you-developed-something)
12
+
*[Beginners level: Understandability Related Questions](#why-category-verifies-you-understand)
13
13
*[Intermediate Level](#intermediate-level)
14
14
*[Intermediate level: Terminology Related Questions]()
15
15
*[Intermediate level: Doability Related questions]()
@@ -89,7 +89,7 @@ you built angular2 you played with routing, https, different built process, unit
89
89
In the intermediate level you are very comfortable with angular. Hence there is no what questions. Actually you know all of them by now. Hence there will be only how and why type questions
90
90
91
91
92
-
### What Category Questions
92
+
### What Category Questions (Important Parts of Angular)
93
93
1. What is the difference between RouterModule.forRoot() vs RouterModule.forChild()? Why is it important?
94
94
1. What is the difference between an observable and a promise?
95
95
1. What are some of the angular apis that are using observables?
@@ -108,7 +108,7 @@ In the intermediate level you are very comfortable with angular. Hence there is
108
108
109
109
110
110
111
-
### How category questions
111
+
### How Category Questions (Verifies you built a real app)
112
112
1. How do components communicate with each other?
113
113
1. How do you create two way data binding in Angular?
114
114
1. What is the purpose of NgModule?
@@ -127,7 +127,7 @@ In the intermediate level you are very comfortable with angular. Hence there is
you just built hello world in angular2+ and may be you followed some video or blog and now you are brave enough to tell the interviewer that you know little bit angular2.
153
153
154
-
### What Category(just few bonus)
154
+
### What Category(You reached corner of the framework)
155
155
1. what is factory Component
156
156
1. What is lazy loading
157
157
1. what is AOT
@@ -164,7 +164,7 @@ you just built hello world in angular2+ and may be you followed some video or bl
164
164
1. How would you insert an embedded view from a prepared TemplateRef?
165
165
166
166
167
-
### How Category
167
+
### How Category (you stretched the framework)
168
168
1. How will you http interceptor
169
169
1. How you parallelize multiple observable call
170
170
1. how will you put one async call before another
@@ -177,7 +177,7 @@ you just built hello world in angular2+ and may be you followed some video or bl
177
177
1. How would you create a component to display error messages throughout your application?
178
178
179
179
180
-
### Why Category
180
+
### Why Category
181
181
1. How would you implement a multiple api calls that needs to happen in order using rxjs?
182
182
1. How would you make sure an api call that needs to be called only once but with multiple conditions. Example: if you need to get some data in multiple routes but, once you get it, you can reuse it in the routes that needs it, therefor no need to make another call to your backend apis.
183
183
1. If you need to respond to two different Observable/Subject with one callback function, how would you do it?(ex: if you need to change the url through route parameters and with prev/next buttons).
@@ -187,8 +187,8 @@ you just built hello world in angular2+ and may be you followed some video or bl
187
187
Answers link coming soon
188
188
189
189
190
-
## Coding Test (coming soon)
191
-
190
+
## Coding Test
191
+
This part coming soon
192
192
2. How would you implement a brush behavior using rxjs?
193
193
3. How would you implement a color picker with rxjs?
0 commit comments