Valid PDII Dumps shared by EduDump.com for Helping Passing PDII Exam! EduDump.com now offer the newest PDII exam dumps, the EduDump.com PDII exam questions have been updated and answers have been corrected get the newest EduDump.com PDII dumps with Test Engine here:
Access PDII Dumps Premium Version
(163 Q&As Dumps, 35%OFF Special Discount Code: freecram)
Recent Comments (The most recent comments are at the top.)
On further analysis, C makes more sense. The page is loading thousands of records, that's the key wording
Answer is B
https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_classes_keywords_transient.htm
I think C is more correct because apex:dataTable has a limit of a thousand items so to load thousands of Account records the page must be readOnly (for limit 10000) and I tried and the internal view state is bigger than the account list so the difference of serialization time is probably smaller than the time it takes the browser to add all the html. And using transient means doing the query again on each page update (which takes more time), and if that's OK, why use a property at all?