Free DEV-501 Exam Dumps

Question 6

Which of the following are collection data types?
✑ String
✑ Map
✑ List
✑ Date
✑ Set
✑ Number

Correct Answer:D

Question 7

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 is rerendered through another component's rerender attribute, the must be inside of an component that has its layout attribute set to "block". The component is not allowed on pages that have the attribute showHeader set to false. You can only have five
components on a single page. Ext JS versions less than 3 should not be included on pages that use this component.

Correct Answer:B

Question 8

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

Question 9

What trigger method is used to correlate IDI-to-sObject maps? (No Answer)

Correct Answer:A

Question 10

Good Apex tests should....

Correct Answer:ADE