Salesforce Certified Platform Developer II — Question 102
During the order of execution of a Visualforce page GET request, what happens after this step?
Evaluate constructors on controllers and extensions
Answer options
- A. Evaluate constructors and expressions on custom components
- B. Create view state if <apex: form> exists
- C. Send the HTML response to the browser
- D. Evaluate expressions, action attributes, and method calls
Correct answer: A
Explanation
The correct answer is A because after evaluating constructors on controllers and extensions, the next step is to evaluate constructors and expressions on custom components, ensuring that all components are properly initialized. Options B, C, and D represent steps that occur either before or after this stage in the order of execution.