Recall & Review
beginner
What is the purpose of the
src/app folder in an Angular project?The
src/app folder contains the main application code, including components, services, and modules that make up the app's functionality.Click to reveal answer
beginner
What file defines the root module of an Angular application?
The root module is defined in
app.module.ts. It declares components and imports other modules needed for the app.Click to reveal answer
intermediate
What is the role of the
angular.json file?The
angular.json file configures the Angular CLI build and development settings, like file paths, assets, and build options.Click to reveal answer
intermediate
Where are environment-specific settings stored in an Angular project?
Environment settings are stored in the
src/environments folder, typically in files like environment.ts and environment.prod.ts.Click to reveal answer
beginner
What is the purpose of the
main.ts file in Angular?The
main.ts file is the entry point that bootstraps the root module to launch the Angular application in the browser.Click to reveal answer
Which folder contains the Angular components and services?
✗ Incorrect
The
src/app folder holds components and services that build the app.What file is used to configure build and development settings in Angular?
✗ Incorrect
The
angular.json file controls build and CLI settings.Where do you find environment-specific configuration files?
✗ Incorrect
Environment files like
environment.ts are in src/environments.Which file bootstraps the Angular application?
✗ Incorrect
The
main.ts file starts the app by bootstrapping the root module.What is the role of
app.module.ts?✗ Incorrect
app.module.ts declares components and imports modules for the app.Describe the main folders and files you find in a typical Angular project and their roles.
Think about where code, configuration, and environment settings live.
You got /5 concepts.
Explain how Angular starts an application from the project structure perspective.
Focus on the entry point and module setup.
You got /4 concepts.