quiz Flashcards

1
Q

contains most of the files and folders that you will actually be working on to create an app.

A

src

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

found inside the src folder. Contains the folders relating to individual pages or tabs of an app.

A

app

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

The root Module for an app. Modules found here will be used by the entire app.

A

app.module.ts

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Defines the routes (navigation) used in the app (what URL matches up to which tab/page/component).

A

app-routing.module.ts

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Defines a regular component, which is what all the pages in the app will be, but it is the root component.

A

app.component.ts

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

contains the template for the root component. is what controls what component is displayed to the user based on the current route.

A

app.component.html

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

deals with unit testing. You probably won’t change any of this with the size projects we do for the class.

A

app.component.spec.ts

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

tabs/pages

A

the folders contain the pages or tabs of an app. Each folder will contain 5 files.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

*.modules.ts

A

file that imports required functionality

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

*.page.ts

A

which defines the logic/behavior related to the page

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

*.page.html

A

which defines the template/view for the page

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

*.page.scss

A

file which defines the styling for the page

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

*.page.spec.ts

A

deals with unit testing. May never use.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

assets

A

typically stores images you want to bundle with your app, but can contain any static asset.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

theme

A

holds the variables.scss file which is where you can define the CSS4 variables to modify the theme of your application.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

www

A

You never need to touch with code in this folder. It is created when you perform a build of the app. It is the “transpiled” code that is understood by browsers and is the code that is actually run when a user uses the app.

17
Q

package.json

A

contains configuration information for a project. Has all the dependencies (external libraries/packages required to make a project work.