Which Angular feature allows you to load certain modules only when they are needed?
- Dependency Injection
- Lazy Loading
- Observables
- Routing
The Angular feature that allows you to load certain modules only when they are needed is Lazy Loading. Lazy loading helps optimize your application's performance by loading modules on-demand, making it a key technique for improving user experience.
Loading...
Related Quiz
- When defining auxiliary routes in Angular, the route paths are prefixed with ________.
- In structural directives, how do you access the container where you want to render the template?
- How can you configure different environments (e.g., development, production) in an Angular application using Angular CLI?
- A developer on your team is unfamiliar with Angular and accidentally removes a necessary package. Which Angular CLI command would help you ensure that the application's dependencies are correctly installed?
- When using ChangeDetectionStrategy.OnPush, Angular relies on ________ checks to determine component updates.