0% found this document useful (0 votes)
730 views4 pages

ANGULAR FRAMEWORK Final Question Bank

This document contains 10 units related to Angular JS and Angular frameworks. Each unit contains questions related to concepts like components, data binding, routing, forms, directives etc. and asks to explain these concepts and create examples to demonstrate them. For example, unit 1 asks about Angular vs Angular JS, MVC architecture, components etc. Unit 2 focuses on data binding, interpolation, ngFor etc. Subsequent units cover additional key Angular concepts like dependency injection, services, routing, forms and directives.

Uploaded by

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

ANGULAR FRAMEWORK Final Question Bank

This document contains 10 units related to Angular JS and Angular frameworks. Each unit contains questions related to concepts like components, data binding, routing, forms, directives etc. and asks to explain these concepts and create examples to demonstrate them. For example, unit 1 asks about Angular vs Angular JS, MVC architecture, components etc. Unit 2 focuses on data binding, interpolation, ngFor etc. Subsequent units cover additional key Angular concepts like dependency injection, services, routing, forms and directives.

Uploaded by

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

Name of the Subject: Angular JS Framework

UNIT-1

Questions
A) What is meant by angular JS? Explain the scope and advantages.
1
B) Why was Angular introduced as a client-side framework? Explain with a suitable example?
A) Differentiate between angular JS and Angular.
2
B) Contrast Angular JS vs Angular?
A) Describe the process of installation of node NPM.
3
B) Describe the process of setting up Angular and run a sample script.
A) Discuss in detail about MVC framework.
4
B) Is AngularJS really based on MVC architecture? Justify your answer.
A) Create a sample Angular script with Components.
5
B) Create a component that takes input of list of numbers.
A)Explain the process of setting up the local environment and workspace for Angular
6
application development?

A)Describe the Command line Interface Tool for Angular CLI


7
B)Demonstrate the advantages of MVC architecture?

A)Create an angular JS application that takes name of user as an input and greets Hello!.
8 B)Explain indetail about container component with suitable example?
A) What is component? Explain anatomy of components with suitable example.
9
B) Create a component based sample angular application.

A) Explain the Anatomy of the Component with example?


10

UNIT-2

Questions
A)What is databinding? Explain the Interpolation binding with examples.
1 B)What is 2-way data binding? Explain 2-way data binding with ngmodel with
suitable example.
A)Illustrate about template interpolation with an example.
2
B)What is the use of “ngfor”? illustrate with an example.
3 A)How to pass value from HTML to file in angular? Explain with example
B) How to create multiple modules? Explain with example.

A)Describe the Conditional Statement ngif with an example?


4 B)Contrast ngOnInit and constructor()?

A)How to pass inputs and variables to components?


5 B)What is meant by directive? Explain types of directives in angular.

A) What is Event Binding? Explain with suitable example.


6
B) What is Property Binding? Explain with suitable example.

A) Describe about Asyncpipe in Angular?


7 B) What are lifecycle hooks in Angular? Explain a few lifecycle hooks.

A)How to style your Angular components explain with suitable examples.


8
A)Develop a sample script to implement component styles and selectors.
9
B)Explain Angular ngIf with example?
A)Implement an application which contains three modules: App, Employee, Admin,
10 Home.

UNIT-3

Questions
A)What is meant by dependency injection? Explain its use with an example.

1 B)What is service in angular? Explain its purpose and illustrate how to inject service with
example.

A)Illustrate this process of providing services with an example.


2 B)Create a sample registration form with “Name,Email,Password and phone”using angular.

A)Explain the process of communicating with backend services using HTTP?

3 B)Discuss about the process of requesting data from server and setup for server using
Httpclient.

A)Create Angular Service for Consuming RESTful API using Angular HttpClient API.
4
B)Create an application that illustrate the use of HTTP GET method.

A)What is Observable in HTTPClient?


5
B)Create an Angular project that detect browser name and version
6 A)Illustrate the working of HTTP Client service class in angular.
7 A)How to setup our application so that we can inject and use the Http client library?
B)Illustrate the working of HTTP Client service class in angular.
A)Create an application that validates the 10-digit mobile number
8 B)Develop a angular component to use “subscribe” for handling request.

A)Explain the multiple benefits of the lazy loaded modules.


9 B)What is the injector tree? Explain how it maps to the component tree with suitable
example.

A)Describe the process of configuring Dependency Injection in Angular with suitable


10 example?
B)Explain the step-by-step procedure to run Angular Project?

UNIT-4

Questions
A)Explain about routing in angular with suitable example?
1
B)Describe about $routeProvider with suitable example.
2 A)How to create routes in angular? Describe it with an example.
A)Explain about route redirect with suitable example.
3
B)How to identify active route? Explain it with suitable example.
A)How to configure child routes in angular? Describe it with an example.
4
B)What are Route Parameters? Explain.
A) How to navigate for routes in angular? Explain it with an example.
5
B)How to setup wildcards? Explain it with an example.
A)Explain Router Query Parameters with example.
6
A)How to build a single-page application using Angular routes?
7
B) Describe in detail about the Angular CLI?
A)How to add Routing to an Existing Angular Project explain with example?
8
B)Explain the Router configuration in the application module with relevant example?

A)Discuss about ngroute module with a suitable example.


9 B)Describe the process that how child route component can access the parent route's
parameters?
A)Describe the functionality of AppRoutingModule? Explain it with suitable example?
10

UNIT-5
Questions
A) Explain about form handling with a suitable example.
1 B) Discuss about form validation in angular with a suitable example

2 A)Describe about form state and input state. List out all the states in the inputfield and
forms.

C) Illustrate the use of ng-model directive with a suitable example.


A)Explain about angular Directives with suitable examples.
B) Explain about following directives with suitable examples.
3 i. ng-minlength
ii. ng-maxlength
iii. ng-pattern.
A)How to submit the form? Explain with an example.
4 B)Discuss about event handling in angular with an example.
A)Create a form using angular and validate it.
5
B)Discuss about validating input in reactive forms with suitable example.
A)Discuss about validating input in Template-Driven forms with suitable example.
6
B)Explain about custom validators with suitable example?
A)Describe step by step procedure to build a template-driven form with an example?
7
B)Develop a angular component that uses ngSubmit.
A)What is ng-required? Explain with example.
8
B)Explain aadvantages and disadvantages of Template Driven Forms?
A)Discuss about The FormBuilder API with relevant example?
9
B)Distinguish between Reactive Forms and Template Driven Forms
A)Create a Login Page containing UserName, Password and create a form event on a
button to check its validation.
10
B)Develop an application which illustrates the use model-driven form?

You might also like