Which of the following are collection data types?
✑ String
✑ Map
✑ List
✑ Date
✑ Set
✑ Number
Correct Answer:D
The list view picklist for an object, including its associated list of records for the currently selected view. In standard Salesforce applications this component is displayed on the main tab for a particular object. This component has additional attributes that can be specified, such as the height and rows per page, as compared to
Note: When an
Correct Answer:B
A developer can use optional catch statements for any exception type in a try-catch block. However, the general exception type, 'Exception', must only be used by the last catch() block.
EXAMPLE:
try{
// Some risky code.
}
catch(SomeExceptionType e){
// Handle one exception type.
}
catch(SomeOtherExceptionType e){
// Handle another exception type.
}
catch(Exception e){
// This must be the last catch block.
}
~|~
(Select all that apply)
Correct Answer:ABE
What trigger method is used to correlate IDI-to-sObject maps? (No Answer)
Correct Answer:A
Good Apex tests should....
Correct Answer:ADE