What is the value of x after the code segment executes?
String x = 'A';Integer i = 10;if ( i < 15 ) {i = 15;x = 'B';} else if ( i < 20 ) {x = 'C';} else {x = 'D'; }
Correct Answer:
C
Which declarative method helps ensure quality data? (Choose 3)
Correct Answer:
ADE
What is a capability of the Developer Console?
Correct Answer:
A
When would a developer use a custom controller instead of a controller extension? Choose 2 answers:
Correct Answer:
BC
A developer wants to display all of the available record types for a Case object. The developer also wants to display the picklist values for the Case.Status field. The Case object and the Case Status field are on a custom visualforce page. Which action can the developer perform to get the record types and picklist values in the controller? Choose 2 answers
Correct Answer:
AB