0% found this document useful (0 votes)
2 views

Angular Interview Study

Angular is a JavaScript framework written in TypeScript, primarily used for creating Single Page Applications (SPAs). It offers advantages over traditional JavaScript libraries through its component-based architecture, which enhances reusability, modularity, and separation of concerns. The document also covers TypeScript, AngularJS, and various features of Angular including directives, pipes, forms, and component creation.

Uploaded by

Suresh Shenoy
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views

Angular Interview Study

Angular is a JavaScript framework written in TypeScript, primarily used for creating Single Page Applications (SPAs). It offers advantages over traditional JavaScript libraries through its component-based architecture, which enhances reusability, modularity, and separation of concerns. The document also covers TypeScript, AngularJS, and various features of Angular including directives, pipes, forms, and component creation.

Uploaded by

Suresh Shenoy
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

Angular

-------

What is Angular?
Its a Javascript Framework. Written in Typescript.
We can say it as a front end web application framework.
Widely used to create Single Page Applications(SPA)
What is SPA?
Advantages of Angular over javscript libraries?
Component based
benefits:
reusability :- resuse same functionality with out repeating the
code to create another one.
modularity:- breaking the into smaller parts so that manageable
and follows SRP(Single responsibility) which helps to adapt changes with out
retesting whole app.
Separation of Concerns:- Improve clarity and maintainability,
Helps Ui developer to work independently from front end Developer,backend developer
and database developer
What is TypeScript?
Typescript is a strongly typed superset of javascript.
It simple terms Typescript = Javascript+Type
Also we can partially say typescript as object oriented javscript as it
bring the concept of class, interface
Typescript uses Transpiler to covert typescript to javascript at runtime.
Tell me what is Transpilation and how it is done and when it is done?

What is AngularJS? What is the difference between AngualrJS and Angular?

Class
Contructor
only one constructor allowed method with class name is not allowed. it will
cause compile time error if invoked in code.
Accesss Modifiers
public
private
protected
Interface
implements
Inheritance
Abstract Class
abstract

Angular Directives

Angular Pipes
Pipes
Built in Pipes
Cusotm Pipes

Angular Forms
Forms
Template Driven Forms
Reactive Forms
Form Validation
Dynamic Forms
Grid
Grid Paging
Grid Sorting
Grid Search
Grid Filters
Angular pipe filters
Datepicker
Multicheckbox
Calendar

How to create your own component to reuse in angular?

You might also like