Home SALESFORCE Visualforce Performance for Salesforce.com Developer

Visualforce Performance for Salesforce.com Developer

1)Use the ____Transient______ keyword in your Apex controllers for variables that aren’t essential for maintaining state and aren’t necessary during page refreshes

Static
Global
Transient
private

2)The view state size of your Visualforce pages must be under ___135KB______. By reducing your view state size, your pages can load quicker and stall less often.

130KB
128KB
150KB
135KB

3)Place all javascripts right before______</apex:page>_______ tag?

</apex:page>
</apex:pageBlock>
</apex:includeScript>>
</apex:actionFunction>

4)______Lazy load___ Apex objects to reduce request times.

Cached Load
Late Load
Lazy load
Limited Load

5)Component, that is unsafe to use in a PDF______<apex:detail>______?

<apex:dataList>
<apex:outputLink>
<apex:repeat>
<apex:detail>

6)By using the _______with sharing_______ keyword when creating your Apex controllers, you have the possibility of improving your SOQL queries by only viewing a data set for a single user.

without sharing
with sharing
private
global

You may also like

Leave a Comment