WHAT IS ANGULAR?
BUILDING BLOCKS
CLI COMMANDS
DATA BINDING
MISC
100

Angular is written primary in WHAT PROGRAMMING LANGUAGE?

What is TypeScript?


100

This is the basic BUILDING BLOCK of an angular app.

What is a component?

100

This command runs an angular app locally

What is "ng serve"?

100

This type of data binding listens for user actions

What is event binding?

100

The two styling languages in angular builds are

HTML and CSS

200

Angular applications are usually structured as THIS kind of web app

What is a single page application? (SPA)

200

This building block groups related features together.

What is a module?

200

This command will generate a new component named "hello"

What is "ng g component hello"?

200

This type of data binding uses [ ]

What is property binding?

200

In angular, this file is the very first one the browser loads.

What is index.html?

300

Angular uses this as its template language (front end)

What is HTML

300

Interpolation in angular uses THESE symbols

What are {{ }}?

300

This command checks your current Angular CLI version

What is "ng version"

300

This type of binding combines property and event binding, using [( )]

What is two way binding?

300

CSS stands for this

What is cascading style sheets?

400

What does CLI stand for?

What is Command Line Interface

400

This DECORATOR makes a class into an angular component

What is @Component?

400

This command will create a new project.

What is "ng new project_name"?

400

List the four types of data binding

What is Interpolation, Event binding, Property binding and two-way binding?

400

HTML stands for this

What is hypertext markup language?

500

This angular cli command starts a new project

What is ng new?

500

This type of binding lets you send data from a parent component to a child component using @Input()

What is Property Binding?


500

This installs angular globally on your system

What is npm install -g @angular/cli


500

This angular module must be imported in app.module.ts before you can use two-way binding with [(ngModel)]

What is FormsModule?

500

In Angular, the <app-root> tag inside index.html corresponds to THIS file.

What is app.component.ts?

M
e
n
u