Question: 1
The maximum view state size of a visualforce page is
Question: 2
What is the correct order of execution for Visualforce Page "postback" requests (when user interaction requires a page update)
Question: 3
JavaScript remote actions need be either a _______ or _______ class and must be _______.
Question: 4
A developer is writing a complex application involving triggers, workflow rules, Apex classes, and processes. The developer needs to carefully consider the order of execution when developing the application. In what order do the following operations execute? 1. before Triggers 2. after Triggers 3. Post commit logic such as sending email 4. DML committed to the database 5. Workflow rules 6. Roll-up summary calculations
A 1, 2, 5, 6, 4, 3
B 1, 5, 6, 2, 4, 3
C 1, 2, 4, 5, 6, 3
D 1, 6, 5, 2, 4, 3
Answer : A
Show Answer
Hide Answer
Question: 5
A developer has been asked to create code that will meet the following requirements: Receives input of: Map, List Performs a potentially long-running callout to an outside web service Provides a way to confirm that the process executed successfully Which asynchronous feature should be used?