Salesforce Certified Platform Developer II Practice Test - Questions Answers, Page 15
List of questions
Related questions
The maximum view state size of a visualforce page is______________.
A.
1mb
B.
256kb
C.
165kb
D.
65kb
E.
135kb
How long is field history retained?
A.
18 Months
B.
12 Months
C.
24 Months
D.
6 Months
E.
36 Months
Choose the correct definition for <apex:pageMessage>.
A.
Standard Salesforce formatting, throws a specific message on a page
B.
Standard Salesforce formatting, shows all errors that occur on page. Can add more messages through the "ApexPages.addMessage" function
C.
A single message, without formatting, that can be associated with a specific component on the page
D.
No formatting; displays all errors on a page
Choose the correct definition for <apex:actionFunction>.
A.
Allows for controller methods to be called directly from Javascript. Must be| encapsulated in<apex:form> tags. Unlike actionSupport, these function<apex:actionPoller>s can be called directly from Javascript code
B.
Sends an AJAX request according to the time interval you specify. If this ever gets re-rendered, it resets
C.
Adds AJAX support to another component (e.g. onClick, onMouseUp, onFocus, etc.)
D.
Can be associated with an AJAX request (actionFunction/actionSupport/actionPoller) and shows content conditionally depending on the status of the request (in progress/complete). Use the "id" field to specify name; use "status" field on related components to connect them
E.
Signifies which components should be processed by the server when an AJAX request is generated
What is the correct order of execution for Visualforce Page "get" requests (initial page visit)?
A.
Evaluate constructors on controller and extensions2) If there's a <apex:form> element, create the view state3) Evaluate expressions, <apex:page> attribute actions, and other method calls (getters/setters) on main page4) Evaluate constructors, extensions, and expression on attribute definitions on any custom components present5) Send HTML to Browser
B.
Evaluate constructors, extensions, and expression on attribute definitions on any custom components present2) Evaluate constructors on controller and extensions3) Evaluate expressions, <apex:page> attribute actions, and other method calls (getters/setters) on main page4) If there's a <apex:form> element, create the view state5) Send HTML to Browser
C.
Evaluate constructors on controller and extensions2) Evaluate constructors, extensions, and expression on attribute definitions on any custom components present3) Evaluate expressions, <apex:page> attribute actions, and other method calls (getters/setters) on main page4) If there's a <apex:form> element, create the view state5) Send HTML to Browser
What is the transaction limit for the number of records for SOQL queries?
A.
5,000
B.
20,000
C.
50,000
D.
10,000
E.
There is no limit
What is the transaction limit for the number of records using QueryLocator?
A.
50,000
B.
50,000,000
C.
100,000
D.
5,000,000
E.
There is no limit
What is the transaction limit for the number of SOSL queries?
A.
20
B.
2,000
C.
100 (synchronous), 200 (async)
D.
200 (synchronous), 100 (async)
E.
There is no limit
What is the transaction limit for the number of records for SOSL?
A.
20
B.
2,000
C.
100 (synchronous), 200 (async)
D.
200 (synchronous), 100 (async)
E.
There is no limit
What is the transaction limit for the number of DML statements allowed?
A.
20
B.
2,000
C.
100 (synchronous), 200 (async)
D.
200 (synchronous), 100 (async)
E.
150
Question