Skip to content

Commit 1674839

Browse files
committed
little more
1 parent a6a875b commit 1674839

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ The goal here is to provide a complete guideline to get that job in angular
88
* [Know the Interviewer](#research-the-interviewer)
99
* [Beginners Level](beginners-level)
1010
* [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)
1313
* [Intermediate Level](#intermediate-level)
1414
* [Intermediate level: Terminology Related Questions]()
1515
* [Intermediate level: Doability Related questions]()
@@ -89,7 +89,7 @@ you built angular2 you played with routing, https, different built process, unit
8989
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
9090

9191

92-
### What Category Questions
92+
### What Category Questions (Important Parts of Angular)
9393
1. What is the difference between RouterModule.forRoot() vs RouterModule.forChild()? Why is it important?
9494
1. What is the difference between an observable and a promise?
9595
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
108108

109109

110110

111-
### How category questions
111+
### How Category Questions (Verifies you built a real app)
112112
1. How do components communicate with each other?
113113
1. How do you create two way data binding in Angular?
114114
1. What is the purpose of NgModule?
@@ -127,7 +127,7 @@ In the intermediate level you are very comfortable with angular. Hence there is
127127
1. How do you mock a module in a unit test?
128128

129129

130-
### Why category questions
130+
### Why Category Questions (Framework understanding)
131131
1. Why angular2 uses decorator
132132
1. When will ngOnInit be called?
133133
1. Why do you need type definitions?
@@ -151,7 +151,7 @@ answers coming soon
151151

152152
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.
153153

154-
### What Category(just few bonus)
154+
### What Category(You reached corner of the framework)
155155
1. what is factory Component
156156
1. What is lazy loading
157157
1. what is AOT
@@ -164,7 +164,7 @@ you just built hello world in angular2+ and may be you followed some video or bl
164164
1. How would you insert an embedded view from a prepared TemplateRef?
165165

166166

167-
### How Category
167+
### How Category (you stretched the framework)
168168
1. How will you http interceptor
169169
1. How you parallelize multiple observable call
170170
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
177177
1. How would you create a component to display error messages throughout your application?
178178

179179

180-
### Why Category
180+
### Why Category
181181
1. How would you implement a multiple api calls that needs to happen in order using rxjs?
182182
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.
183183
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
187187
Answers link coming soon
188188

189189

190-
## Coding Test (coming soon)
191-
190+
## Coding Test
191+
This part coming soon
192192
2. How would you implement a brush behavior using rxjs?
193193
3. How would you implement a color picker with rxjs?
194194

0 commit comments

Comments
 (0)