The process of splitting an Angular application into multiple bundles, where each bundle is loaded lazily on demand, is known as ________.

  • Ahead-of-Time Compilation
  • Code Splitting
  • Lazy Loading
  • Tree Shaking
The process of splitting an Angular application into multiple bundles, where each bundle is loaded lazily on demand as needed, is known as "Lazy Loading." This technique helps improve application performance by loading only the necessary code chunks when navigating to different parts of the application.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *