Angular - ModulesWhich Angular feature allows loading a module only when its route is accessed?AEager loadingBLazy loadingCPreloading strategyDAhead-of-time compilationCheck Answer
Step-by-Step SolutionSolution:Step 1: Identify loading typesEager loading loads modules immediately; lazy loading delays until route access.Step 2: Match feature to descriptionLazy loading matches the description of loading on route access.Final Answer:Lazy loading -> Option BQuick Check:Load on route access = Lazy loading [OK]Quick Trick: Lazy loading loads modules on demand [OK]Common Mistakes:Confusing eager loading with lazy loadingMixing preloading with lazy loading
Master "Modules" in Angular9 interactive learning modes - each teaches the same concept differentlyLearnWhyDeepVisualTryChallengeProjectRecallPerf
More Angular Quizzes Angular Fundamentals - How Angular bootstraps an application - Quiz 5medium Angular Fundamentals - Angular CLI installation and setup - Quiz 14medium Angular Fundamentals - Angular CLI installation and setup - Quiz 15hard Angular Modules - Why modules organize applications - Quiz 11easy Component Interaction - @Output decorator with EventEmitter - Quiz 6medium Components - Inline vs external templates - Quiz 8hard Directives - ngClass for dynamic classes - Quiz 10hard Pipes - Parameterized pipes - Quiz 13medium Pipes - Why pipes are needed - Quiz 4medium TypeScript in Angular - Interfaces for data models - Quiz 11easy