Login
Remember
Register
Ask a Question
What is Eager and Lazy loading?
0
votes
asked
Aug 11, 2023
in
Angular
by
DavidAnderson
What is Eager and Lazy loading?
angular-interview-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 11, 2023
by
DavidAnderson
Loading:
The eager loading technique is the default module-loading strategy. Eager loading feature modules are loaded before the program begins. This is primarily utilized for small-scale applications.
Lazy Loading:
Lazy loading loads the feature modules dynamically as needed. This speeds up the application. It is utilized for larger projects where all of the modules are not required at the start.
...