<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Acharya Anil </title>
    <description>The latest articles on DEV Community by Acharya Anil  (@acharyaks90).</description>
    <link>https://dev.to/acharyaks90</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F82333%2F37d5473c-777f-4bf1-b564-4b945ff1d137.jpeg</url>
      <title>DEV Community: Acharya Anil </title>
      <link>https://dev.to/acharyaks90</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/acharyaks90"/>
    <language>en</language>
    <item>
      <title>Advise of better and correct approach in creating object and using in Type script and angular?</title>
      <dc:creator>Acharya Anil </dc:creator>
      <pubDate>Mon, 27 Feb 2023 10:21:59 +0000</pubDate>
      <link>https://dev.to/acharyaks90/advise-of-better-and-correct-approach-in-creating-object-and-using-in-type-script-and-angular-58b5</link>
      <guid>https://dev.to/acharyaks90/advise-of-better-and-correct-approach-in-creating-object-and-using-in-type-script-and-angular-58b5</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;// ********** First Approach 

class MyCarComponent {
    private car: object = { };

    constructor(){
        this.car['name'] = "AudI";
        this.car['model'] = "2017";
    }
}

// *********** 2nd Approach 
class Car {
    name: string;
    model: string;
}

class MyCarrComponent {
    private car: Car = new Car();

    constructor(){
        this.car.name = "AudI";
        this.car.model = "2017";
    }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Please comment for correct approach&lt;/p&gt;

</description>
      <category>angular</category>
      <category>typescript</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Expert level Angular interview questions Part 4</title>
      <dc:creator>Acharya Anil </dc:creator>
      <pubDate>Sun, 11 Apr 2021 10:37:42 +0000</pubDate>
      <link>https://dev.to/acharyaks90/expert-level-angular-interview-questions-part-4-1ckj</link>
      <guid>https://dev.to/acharyaks90/expert-level-angular-interview-questions-part-4-1ckj</guid>
      <description>&lt;h1&gt;
  
  
  Mix and Advance
&lt;/h1&gt;

&lt;p&gt;What is annotation?&lt;br&gt;
What is JIT ?&lt;br&gt;
What is module?&lt;br&gt;
What is ngcc?&lt;br&gt;
How handle NPM package dependencies ?&lt;br&gt;
What is platform?&lt;br&gt;
What is polyfill?&lt;br&gt;
What is subscriber ?&lt;br&gt;
What is view engine ?&lt;br&gt;
What is zone?&lt;br&gt;
What is Bazel?&lt;br&gt;
What is web worker? Is SSR support the it?&lt;br&gt;
What is state function?&lt;br&gt;
How Dynamically component can be created?&lt;br&gt;
What is basere tag ? where we need to put it?&lt;br&gt;
Define mapping rules for mapping custom element to DOM?&lt;br&gt;
How to run angular change detection manually ?&lt;br&gt;
In script tag we have async , defer and preload, prefech differentiate them?&lt;br&gt;
How make anything draggable in angular?&lt;br&gt;
How to remove ngAfterViewChangeExpression changes?&lt;br&gt;
What is challenging work you have done in angular?&lt;br&gt;
How to increase the speed of app?&lt;br&gt;
What is ngModule?&lt;br&gt;
 If we refresh the page how manage the state of the app?&lt;br&gt;
What is HMR? ( Hot Module Replacement )&lt;br&gt;
Difference between get, post, put and delete?&lt;br&gt;
What is a querylist ?&lt;br&gt;
What is multi slot projection?&lt;br&gt;
What is content projection?&lt;br&gt;
What best to handling errors?&lt;br&gt;
How to analyse the code?(code analyser)&lt;br&gt;
What mean by uglification?&lt;br&gt;
What is High order component?&lt;br&gt;
What is webpack?&lt;br&gt;
When we do ng serve who in background take care browser?&lt;br&gt;
Difference between session storage and local storage?&lt;br&gt;
Which are the main features of angular?&lt;br&gt;
Enlist the steps  to upgrade  from AngularJS to Angular.&lt;br&gt;
What is app initiator &lt;br&gt;
How to bootstrap other module at start or change main component?&lt;/p&gt;

</description>
      <category>angular</category>
      <category>typescript</category>
      <category>html</category>
    </item>
    <item>
      <title>Expert level Angular interview questions Part 3</title>
      <dc:creator>Acharya Anil </dc:creator>
      <pubDate>Sun, 11 Apr 2021 10:35:45 +0000</pubDate>
      <link>https://dev.to/acharyaks90/expert-level-angular-interview-questions-part-3-56p2</link>
      <guid>https://dev.to/acharyaks90/expert-level-angular-interview-questions-part-3-56p2</guid>
      <description>&lt;h1&gt;
  
  
  Schematics
&lt;/h1&gt;

&lt;p&gt;How to make custom schematics?&lt;br&gt;
How to add any third party library?&lt;br&gt;
How to update the angular apps?&lt;br&gt;
What is an angular dev kit ?&lt;br&gt;
Can we run angular app without ng serve?&lt;/p&gt;

&lt;h1&gt;
  
  
  PWA and Service worker
&lt;/h1&gt;

&lt;p&gt;How to support PWA in angular?&lt;br&gt;
What are the benefits of service worker?&lt;br&gt;
Which file contain service worker configuration?&lt;br&gt;
What is app shell?&lt;/p&gt;

&lt;h1&gt;
  
  
  RxJS
&lt;/h1&gt;

&lt;p&gt;Difference between Observable and Promise ?&lt;br&gt;
What is next , error complete?&lt;br&gt;
Difference between of and from ?&lt;br&gt;
How to convert promise to Observable and vice-versa?&lt;br&gt;
How to create observable?&lt;br&gt;
List the operators ?&lt;br&gt;
Explain the combineLatest, concat , zip, takeuntil debounceTime, DistinctUntil change, switchmap buffertime, tap and share? &lt;br&gt;
Can we replace interval with observable if yes then how?&lt;br&gt;
Make an observable from keystrokes ?&lt;/p&gt;

&lt;h1&gt;
  
  
  Security
&lt;/h1&gt;

&lt;p&gt;How to prevent cross site scripting?&lt;br&gt;
How to trust safe values?&lt;br&gt;
What is CSP Content security policy?&lt;br&gt;
What are all possible vulnerabilities ?&lt;br&gt;
How we can audit an angular app?&lt;/p&gt;

&lt;h1&gt;
  
  
  Performance and optimization
&lt;/h1&gt;

&lt;p&gt;How to support accessibility ?&lt;br&gt;
How to check version of angular app?&lt;br&gt;
How to update old angula third party libraries?&lt;br&gt;
What is a lightweight injection token?&lt;br&gt;
Step to deploy angular app?&lt;br&gt;
How to configure differential loading?&lt;br&gt;
What is AOT ?&lt;br&gt;
What are the phases included in compilation ?&lt;br&gt;
What is non null type assertion operator?&lt;br&gt;
What is code folding?&lt;br&gt;
What is ivy ? &lt;br&gt;
How to disable type checking on template expression?&lt;br&gt;
How to make various environment build like development , staging , UAT , prod ?&lt;br&gt;
What is SSR (Angular Universal)?&lt;br&gt;
What is Angular language service?&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Expert level Angular interview questions Part 2</title>
      <dc:creator>Acharya Anil </dc:creator>
      <pubDate>Sun, 11 Apr 2021 10:33:44 +0000</pubDate>
      <link>https://dev.to/acharyaks90/expert-level-angular-interview-questions-part-2-51m1</link>
      <guid>https://dev.to/acharyaks90/expert-level-angular-interview-questions-part-2-51m1</guid>
      <description>&lt;h1&gt;
  
  
  Forms
&lt;/h1&gt;

&lt;p&gt;What form approaches are available ? Among them which is best and why?&lt;br&gt;
In Which form of approach data model is immutable?&lt;br&gt;
How does data flow differently in template and reactive forms?&lt;br&gt;
What is benefit of ngForm Driective ?&lt;br&gt;
Differentiate the pristine dirty touched ?&lt;br&gt;
How to put custom validation in template driven forms?&lt;br&gt;
What is use of remove Control ?&lt;br&gt;
How to use Update Model?&lt;br&gt;
How to show validation errors in dynamic template driven form and reactive forms ?&lt;br&gt;
Write code for custom validation for reactive forms ?&lt;br&gt;
What is cross field validation?&lt;br&gt;
Implement async validator for template driven form?&lt;br&gt;
How to compose dynamic form content?&lt;/p&gt;

&lt;h1&gt;
  
  
  HTTP Client
&lt;/h1&gt;

&lt;p&gt;How to consume an  JSON REST api (server)?&lt;br&gt;
Which service is used for hitting an api?&lt;br&gt;
Differentiate between get and post?&lt;br&gt;
What is a header?&lt;br&gt;
In Auth 2 how to manage token expire scenario by renew it using refresh token without impact of user experience?&lt;br&gt;
Where do we put http params in the request ?&lt;br&gt;
What are different type of response type available in angular?&lt;br&gt;
What is role of observe in request ?&lt;br&gt;
How get upload progress of file request ?&lt;br&gt;
How t request a typed response?&lt;br&gt;
How to read the full response?&lt;br&gt;
How to make and consume a jsonp request?&lt;br&gt;
How to request non json data ? like download a file.&lt;br&gt;
Write code for interceptor ? also where do we need it to inject?&lt;br&gt;
In provider array we use multi true what it does ?&lt;br&gt;
How can we apply caching in request?&lt;br&gt;
How to apply debouncing in request?&lt;br&gt;
How you can secure the requests?&lt;br&gt;
How to handle more than one request suppose need to get path of 100 of images in an array ?&lt;/p&gt;

&lt;h1&gt;
  
  
  Testing
&lt;/h1&gt;

&lt;p&gt;Write the code for testing a service ?&lt;br&gt;
Why we need before each?&lt;br&gt;
Difference between equal to and tobe?&lt;br&gt;
Why we need fake service?&lt;br&gt;
Testing without before each ?&lt;br&gt;
How to test http service?&lt;br&gt;
What is needed for component dom test?&lt;br&gt;
Use of by.css&lt;br&gt;
What is the debug element?&lt;br&gt;
How to test attribute directive?&lt;br&gt;
Explain tick , discard periodic task , component fixture auto detect?&lt;br&gt;
Explain compile, component?&lt;br&gt;
How replace meta data ?&lt;br&gt;
How to reset the test environment?&lt;br&gt;
Please enlist the component fixture methods?&lt;br&gt;
What is isStable ?&lt;br&gt;
What is listener in testing?&lt;br&gt;
What is By.directive ?&lt;/p&gt;

&lt;h1&gt;
  
  
  Internationalization (i18n)
&lt;/h1&gt;

&lt;p&gt;How to change the currency according to timezone?&lt;br&gt;
Name the local package?&lt;br&gt;
How to support the translation?&lt;br&gt;
In which file we put localize configuration ?&lt;/p&gt;

&lt;h1&gt;
  
  
  Animation
&lt;/h1&gt;

&lt;p&gt;Enlist the some animation functions we import from modules?&lt;br&gt;
Write and animation code ?&lt;br&gt;
Explain delay and easing?&lt;br&gt;
What is trigger in animation Where we put the trigger?&lt;br&gt;
What is use of animateChild ?&lt;br&gt;
How to create reusable animation?&lt;br&gt;
How to add animation in route transition?&lt;br&gt;
How to add animation in ngFor for element for leaving and entering?  &lt;/p&gt;

</description>
      <category>angular</category>
      <category>typescript</category>
      <category>html</category>
    </item>
    <item>
      <title>Expert level Angular Interview Questions Part 1</title>
      <dc:creator>Acharya Anil </dc:creator>
      <pubDate>Sun, 11 Apr 2021 10:24:26 +0000</pubDate>
      <link>https://dev.to/acharyaks90/expert-level-angular-interview-questions-part-1-1pi7</link>
      <guid>https://dev.to/acharyaks90/expert-level-angular-interview-questions-part-1-1pi7</guid>
      <description>&lt;h1&gt;
  
  
  Components
&lt;/h1&gt;

&lt;p&gt;How is changing the CD strategy to onPush impact component?&lt;br&gt;
How to make child component data two way data binding?&lt;br&gt;
What is the dynamic component?&lt;br&gt;
What is an angular element?&lt;br&gt;
What is a component factory resolver?&lt;br&gt;
In Parent to child component communication. suppose an object have two properties only change in one property in parent, Will change reflect in the child component?&lt;br&gt;
When change detection runs?&lt;br&gt;
What is Virtual Scroll?&lt;br&gt;
How to design drag and drop functionality?&lt;br&gt;
What is application ref?&lt;br&gt;
In which life cycle hook Viewchildren and content children can be accessed? &lt;/p&gt;

&lt;h1&gt;
  
  
  Templates
&lt;/h1&gt;

&lt;p&gt;Define Styling precedence ?&lt;br&gt;
Difference between @Attribute() vs @Input()?&lt;br&gt;
How to use svg file as templates?&lt;br&gt;
Template type checking in custom directive?&lt;br&gt;
3 Mode of template type checking?&lt;br&gt;
ngAfterContentChecked and ngAfterViewChecked?&lt;br&gt;
Write code for custom pipe for change the string to title case? How impure pipe impact angular.&lt;br&gt;
How pipe change detection works for primitive and references objects ?&lt;br&gt;
What is use of Async pipe ?&lt;br&gt;
Which have higher precedence between pipe and ternary operator ?&lt;br&gt;
What is innerHtml?.&lt;br&gt;
How to made custom two way binding like ngModel?&lt;br&gt;
 What happens if assign template local reference variable on ng-template?&lt;/p&gt;

&lt;h1&gt;
  
  
  Directives
&lt;/h1&gt;

&lt;p&gt;What is template input variable?&lt;br&gt;
Which Module need to import for using built in directives? &lt;br&gt;
Is angular selector support parent child relationship ?&lt;br&gt;
Explain Hostbinding, Hostlistener?&lt;br&gt;
Explain ContentChildren and ViewChild ?&lt;br&gt;
Write the syntax for ngClass use cases?&lt;br&gt;
Tell the use case of ngModel Change ?&lt;br&gt;
Explain the use of trackby?&lt;br&gt;
How to host a directive without Dom?&lt;br&gt;
What is ElementRef use?&lt;br&gt;
How to stop/Deactivate the processing of directive or binding ? &lt;br&gt;
How to create template fragments ?&lt;br&gt;
What is template guard?&lt;br&gt;
What we use common module? If we don’t include that common module then what happen?&lt;/p&gt;

&lt;h1&gt;
  
  
  Dependency Injection
&lt;/h1&gt;

&lt;p&gt;What is a provider token?&lt;br&gt;
How to provide an alternative Class provider?&lt;br&gt;
What is a factory provider?&lt;br&gt;
What is a parameter decorator?&lt;br&gt;
Making dependency option and search with a host?&lt;br&gt;
How to alias class interface?&lt;br&gt;
How to inject an object? syntax also?&lt;br&gt;
What is the use of @Inject  or How to supply a custom provider?&lt;br&gt;
What is meta data?&lt;br&gt;
If we not provide the Injectable then how does it impact?&lt;br&gt;
When do we use useValue , useFactory ?&lt;/p&gt;

&lt;h1&gt;
  
  
  Routing &amp;amp; Navigation
&lt;/h1&gt;

&lt;p&gt;What is the difference between canLoad and canActivate?&lt;br&gt;
What is a router event ? name the any of ?&lt;br&gt;
Differentiate the param and query param in lazyloading?&lt;br&gt;
How to redirect any path ?&lt;br&gt;
What does pathMatch signifies ?&lt;br&gt;
What are auxiliary routes?&lt;br&gt;
What is canResolve route guard?&lt;br&gt;
What is the location strategy? Please enlighten the type also? Or There are two kind of Url one with hash one without hash compare both?&lt;br&gt;
Explain the properties of the activated route?&lt;br&gt;
How to use a scroll event in navigation?&lt;br&gt;
Name the navigation event trigger when loading lazyload routes?&lt;br&gt;
What is router outlet?&lt;br&gt;
What is URL tree?&lt;br&gt;
What does a route guard return?&lt;/p&gt;

</description>
      <category>angular</category>
      <category>typescript</category>
      <category>interview</category>
      <category>angulartips</category>
    </item>
    <item>
      <title>Intermediate level Angular interview questions</title>
      <dc:creator>Acharya Anil </dc:creator>
      <pubDate>Sun, 11 Apr 2021 10:19:42 +0000</pubDate>
      <link>https://dev.to/acharyaks90/intermediate-level-angular-interview-questions-377e</link>
      <guid>https://dev.to/acharyaks90/intermediate-level-angular-interview-questions-377e</guid>
      <description>&lt;h1&gt;
  
  
  Components
&lt;/h1&gt;

&lt;p&gt;What is the difference between directive and the component?&lt;br&gt;
Difference between ngOnChanges and ngDoCheck?&lt;br&gt;
How to send data from child to parent?&lt;br&gt;
What is Change detection and type of change detection?&lt;br&gt;
What is view encapsulation?&lt;br&gt;
What is Shadow dom?&lt;br&gt;
What is EventEmitter? Can we use it in service if yes then how to tell the use case?&lt;br&gt;
Difference between ngOnint and Constructor?&lt;/p&gt;

&lt;h1&gt;
  
  
  Templates
&lt;/h1&gt;

&lt;p&gt;Can we put maths expressions in  interpolation?&lt;br&gt;
What is event binding?&lt;br&gt;
What is the difference between impure and pure pipe?&lt;br&gt;
Can we apply pipe in ngFor ?  How to get the length of the filtered result?&lt;br&gt;
Make a groupby pipe?&lt;br&gt;
What is property binding?&lt;br&gt;
What is attribute binding?&lt;br&gt;
What is a template reference variable? What are all the use cases?&lt;/p&gt;

&lt;h1&gt;
  
  
  Directives
&lt;/h1&gt;

&lt;p&gt;What are types of directives available ?&lt;br&gt;
Why * (start) asterisk before ngFor ?&lt;br&gt;
Can we use ngFor and ngIf on the same element? &lt;br&gt;
Write syntax for custom directive ?&lt;br&gt;
Difference between Attribute and structure directive?&lt;br&gt;
What is ng template , ng container, ng-content, ng template outlet?&lt;br&gt;
Where to use ngSwitch ? Write the syntax codewise ?&lt;/p&gt;

&lt;h1&gt;
  
  
  Dependency Injection
&lt;/h1&gt;

&lt;p&gt;What is Injectable?&lt;br&gt;
What is provided in types  (root etc)?&lt;br&gt;
Difference between public and private service injection?&lt;br&gt;
What is a provider?&lt;br&gt;
How to create multiple instances of a service (sandboxing)?&lt;/p&gt;

&lt;h1&gt;
  
  
  Routing &amp;amp; Navigation
&lt;/h1&gt;

&lt;p&gt;What is codespliting?&lt;br&gt;
What is lazy loading ?&lt;br&gt;
How to get current route information?&lt;br&gt;
What is a wildcard route?&lt;br&gt;
How set display a 404 page?&lt;br&gt;
How to do nesting routing?&lt;br&gt;
What is the relative path?&lt;br&gt;
Difference between query param and param?&lt;br&gt;
What is a route guard? Use of canactivate?&lt;br&gt;
Difference location strategies ?&lt;br&gt;
What activate route and snapshot route?&lt;br&gt;
Difference between for root and for child ?&lt;/p&gt;

&lt;h1&gt;
  
  
  Forms
&lt;/h1&gt;

&lt;p&gt;Difference between Reactive form and template driven form?&lt;br&gt;
What is a control value accessor?&lt;br&gt;
What is the use of a formArray ?&lt;br&gt;
What is the use of formGroup?&lt;br&gt;
In which form reactive or template driven form model is implicit?&lt;br&gt;
How does data flow in both forms?&lt;br&gt;
What is mutability of data model?&lt;br&gt;
What is form validation? How to define custom validation on both forms?&lt;br&gt;
How to put validation error in template driven form?&lt;br&gt;
Difference between sync and async validator function?&lt;br&gt;
What is abstract control?&lt;br&gt;
How to put a validation class on the form element? &lt;br&gt;
Difference between set and patch value?&lt;/p&gt;

&lt;h1&gt;
  
  
  HTTP Client
&lt;/h1&gt;

&lt;p&gt;What is an http interceptor?&lt;br&gt;
What are different options in request ?&lt;br&gt;
What are different response type?&lt;br&gt;
How to cancel any request?&lt;br&gt;
How to handle multiple request hit one after another any once can come first or second etc?&lt;br&gt;
What is JSONP?&lt;br&gt;
How to read non json data?&lt;br&gt;
How to handle errors?&lt;br&gt;
How to retry a failed request?&lt;br&gt;
How to handle timeout ?&lt;/p&gt;

&lt;h1&gt;
  
  
  Testing
&lt;/h1&gt;

&lt;p&gt;What is code coverage? How to check it?&lt;br&gt;
How to test services with multiple dependencies ?&lt;br&gt;
What is spy object?&lt;br&gt;
What is testbed ?&lt;br&gt;
What is a component fixture?&lt;br&gt;
How to do query in html dom in testing?&lt;br&gt;
What is the use of detectChanges?&lt;br&gt;
How to test async service?&lt;br&gt;
How to test input and output ?&lt;br&gt;
How to test routing?&lt;br&gt;
How to test pipes?&lt;/p&gt;

&lt;h1&gt;
  
  
  Internationalization (i18n)
&lt;/h1&gt;

&lt;p&gt;How to provide the translation files?&lt;br&gt;
How to localize currency ?&lt;br&gt;
How to localize time?&lt;/p&gt;

&lt;h1&gt;
  
  
  Animation
&lt;/h1&gt;

&lt;p&gt;What is multiple transition state?&lt;br&gt;
How to animate entering and leaving view?&lt;br&gt;
What is complex animation sequence ?&lt;br&gt;
What is stagger group and sequence?&lt;/p&gt;

&lt;h1&gt;
  
  
  Schematics
&lt;/h1&gt;

&lt;p&gt;How to generate module with routing using cli&lt;br&gt;
How to create component without spec file? &lt;/p&gt;

&lt;h1&gt;
  
  
  PWA and Service worker
&lt;/h1&gt;

&lt;p&gt;What is PWA Progressive web app ?&lt;br&gt;
What is service work?&lt;br&gt;
Is Server Side render support service worker?&lt;br&gt;
How make app aware new version is available?&lt;/p&gt;

&lt;h1&gt;
  
  
  RxJS
&lt;/h1&gt;

&lt;p&gt;Explain the operator catchError,retry?&lt;br&gt;
What is Of and from operator?&lt;br&gt;
Explain switchmap?&lt;br&gt;
Define Subject and its types with difference?&lt;br&gt;
Difference between hot and cold observable?&lt;br&gt;
Define unicasting and multicasting?&lt;br&gt;
After an observable error will it get new value?&lt;/p&gt;

&lt;h1&gt;
  
  
  Security
&lt;/h1&gt;

&lt;p&gt;How to keep your app secure?&lt;br&gt;
How to bypass angular security?&lt;/p&gt;

&lt;h1&gt;
  
  
  Performance and optimization
&lt;/h1&gt;

&lt;p&gt;How you optimize your app?&lt;br&gt;
Difference between defer and async?&lt;br&gt;
What is CDN?&lt;br&gt;
How to make components lighter?&lt;br&gt;
How many ngmodel can we put in single page?&lt;br&gt;
What is tree shaking?&lt;/p&gt;

</description>
      <category>angular</category>
      <category>angulartips</category>
      <category>javascript</category>
      <category>typescript</category>
    </item>
    <item>
      <title>Basic Level Angular Interview Questions?</title>
      <dc:creator>Acharya Anil </dc:creator>
      <pubDate>Sun, 11 Apr 2021 07:37:49 +0000</pubDate>
      <link>https://dev.to/acharyaks90/basic-level-angular-interview-questions-3m53</link>
      <guid>https://dev.to/acharyaks90/basic-level-angular-interview-questions-3m53</guid>
      <description>&lt;h1&gt;
  
  
  Components
&lt;/h1&gt;

&lt;p&gt;What is the component?&lt;br&gt;
What are the life cycle hooks in components?&lt;br&gt;
How to send data from Parent to Child?&lt;/p&gt;

&lt;h1&gt;
  
  
  Templates
&lt;/h1&gt;

&lt;p&gt;What is interpolation?&lt;br&gt;
What is data binding?&lt;br&gt;
What is pipe? Name some built in pipes?&lt;br&gt;
What is class and style binding&lt;/p&gt;

&lt;h1&gt;
  
  
  Directives
&lt;/h1&gt;

&lt;p&gt;What are built in directives available ?&lt;br&gt;
What is the Use of ngFor and ngIf?&lt;br&gt;
Dependency Injection&lt;br&gt;
What Dependency Injection?&lt;/p&gt;

&lt;h1&gt;
  
  
  Routing &amp;amp; Navigation
&lt;/h1&gt;

&lt;p&gt;How to enable routing?&lt;br&gt;
What is syntax for routing?&lt;br&gt;
What is SPA (Single page application)?&lt;br&gt;
How to provide a link to another page in html template?&lt;br&gt;
How to navigate dynamically to path /page from ts(class)?&lt;/p&gt;

&lt;h1&gt;
  
  
  Forms
&lt;/h1&gt;

&lt;p&gt;Which module do we need to include for using forms in app and where?&lt;br&gt;
What are the types of forms ?&lt;br&gt;
What is ngModel ?&lt;br&gt;
What is formControl?&lt;br&gt;
How to initialize reactive form?&lt;br&gt;
How to initialize template driven form?&lt;br&gt;
Difference between dirty and touched?&lt;br&gt;
HTTP Client&lt;br&gt;
How to consume an JSON REST api (server)?&lt;br&gt;
Which service use for hit an api?&lt;br&gt;
Difference between get and post?&lt;br&gt;
What is a header?&lt;/p&gt;

&lt;h1&gt;
  
  
  Testing
&lt;/h1&gt;

&lt;p&gt;What is testing?&lt;br&gt;
What is Unit test?&lt;br&gt;
What is Karma?&lt;br&gt;
What is Jasmine?&lt;/p&gt;

&lt;h1&gt;
  
  
  Internationalization (i18n)
&lt;/h1&gt;

&lt;p&gt;How to localize the app?&lt;/p&gt;

&lt;h1&gt;
  
  
  Animation
&lt;/h1&gt;

&lt;p&gt;How to use transition in Angular?&lt;br&gt;
Which module supports Animation?&lt;/p&gt;

&lt;h1&gt;
  
  
  Schematics
&lt;/h1&gt;

&lt;p&gt;How to generate Component using cli?&lt;br&gt;
What is angular cli?&lt;br&gt;
How to add angular material?&lt;br&gt;
How to make prod build?&lt;/p&gt;

&lt;h1&gt;
  
  
  RxJS
&lt;/h1&gt;

&lt;p&gt;What is Observable?&lt;br&gt;
How to unsubscribe Observable?&lt;/p&gt;

</description>
      <category>angular</category>
      <category>interview</category>
      <category>angulartips</category>
      <category>javascriptframework</category>
    </item>
    <item>
      <title>Hi Every one how we can compare the AngularJS ( 1.x) and Angular(2+) Performance by chrome dev tool  or any other method ?</title>
      <dc:creator>Acharya Anil </dc:creator>
      <pubDate>Fri, 31 Aug 2018 06:10:31 +0000</pubDate>
      <link>https://dev.to/acharyaks90/hi-every-one-how-we-can-compare-the-angularjs--1x-and-angular2-performance-by-chrome-dev-tool--or-any-other-method--5ef5</link>
      <guid>https://dev.to/acharyaks90/hi-every-one-how-we-can-compare-the-angularjs--1x-and-angular2-performance-by-chrome-dev-tool--or-any-other-method--5ef5</guid>
      <description></description>
      <category>angular</category>
      <category>javascript</category>
      <category>chrome</category>
    </item>
    <item>
      <title> what is benefit ngx-webstorage over normal session and localstorage?</title>
      <dc:creator>Acharya Anil </dc:creator>
      <pubDate>Fri, 06 Jul 2018 07:54:05 +0000</pubDate>
      <link>https://dev.to/acharyaks90/-what-is-benefit-ngx-webstorage-over-normal-session-and-localstorage-5e5p</link>
      <guid>https://dev.to/acharyaks90/-what-is-benefit-ngx-webstorage-over-normal-session-and-localstorage-5e5p</guid>
      <description></description>
      <category>javascript</category>
      <category>angular</category>
      <category>discuss</category>
    </item>
  </channel>
</rss>
