Multiple choice technology web 2.0

Can you implement lazy loading of a module in Flex ?

  1. No, Flex doesn't support lazy loading

  2. Yes, by lazyModuleLoader class

  3. Yes, by moduleLoader class

  4. Yes, but need to connect to database first

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Apache Flex supports lazy loading through the ModuleLoader class, which loads Flex modules (.swf files) on demand at runtime. This enables applications to initialize faster by deferring non-critical module loading until needed.