Multiple choice technology web technology

creationPolicy property is used to

  1. defer the creation of any component, container, or child of a container

  2. delete the creation of any component, container, or child of a container

  3. create parent container

  4. Attach child container to Parent container

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

The creationPolicy property in Flex controls when components are instantiated - setting it to 'deferred' or 'none' delays the creation of components, containers, or their children until they are actually needed. This improves startup performance and reduces initial memory usage. Option B incorrectly suggests 'delete' instead of 'defer', while options C and D describe unrelated container attachment operations.