Home > Salesforce Certification > Quizzes > DEV-501: Certified Force.com Advanced Developer
DEV-501: Certified Force.com Advanced Developer
Fast practice, instant feedback. Timer auto-submits when time’s up.
Avg score: 11% Most missed: “What is the this keyword used to represent?”
DEV-501: Certified Force.com Advanced Developer
Time left 00:00
25 Questions

1. An area of a page that uses styling similar to the appearance of a Salesforce detail page, but without any default content.
2. What is the list of steps to match regular expressions using the Pattern and Matcher classes?
3. What are all the datatypes that Salesforce supports? (No Answer)
4. What does Apex provide to support programmatic control of the workflow? (No Answer)
5. A developer would like to modify the contents of the hover details for a custom object called Position. What would a developer customize to accomplish this?
6. This Apex class allows developers to reference an instantiation of a page.
7. An ordered or unordered list of values that is defined by iterating over a set of data. The body of the component specifies how a single item should appear in the list. The data set can include up to 1,000 items.
8. Given a three tier model (UI layer, business logic layer, data layer), which feature of the Force.com platform is associated with the data layer? Choose 3 answers
9. __________ enables you to create Visualforce pages that can display or act on a set of records.
10. If you use a standard controller on a page and the user doesn't have access to the object, the page will...
11. An HTML input element of type password. Use this component to get user input for a controller method that does not correspond to a field on a Salesforce object, for a value that is masked as the user types.
12. Universal Containers requires that all job applications have a unique code that is auto-populated when records are created. The code must be different from the record ID. What would a developer use to accomplish this declaratively?
13. A business requirement can be met by using either a formula field or an Apex trigger. Why would a developer use a formula field Instead of an Apex trigger? Choose 2 answers
14. Which of the following guidelines are used for creating custom Web Services? (Select all that apply.) webservice methods must be static. webservice methods cannot be overloaded. A system-defined enum can be used anywhere in a webservice method. All classes that contain methods defined with the webService keyword must be declared as private.
15. What is the this keyword used to represent?
16. This integration resource provides generic access to any organization, and exposes standard objects and fields through the SOAP interface.
17. How are Apex triggers stored?
18. Defines a chart legend. This component offers additional configuration options beyond the defaults used by the legend attribute of the component. Note: This component must be enclosed within an component.
19. A button that is rendered as an HTML input element with the type attribute set to submit, reset, or image, depending on the tag's specified values. The button executes an action defined by a controller, and then either refreshes the current page, or navigates to a different page based on the PageReference variable that is returned by the action. An component must always be a child of an component. See also:
20. What language is Apex similar to? (No Answer)
21. A single column in a table. An component must always be a child of an or component. Note that if you specify an sObject field as the value attribute for an , the associated label for that field is used as the column header by default. To override this behavior, use the headerValue attribute on the column, or the column's header facet.
22. The System.runAs() functionality can be used to test and verify proper data sharing and data access. However, System.runAs() does NOT validate CRUD or Field Level Security permissions.
23. This integration resource is specific to an individual organization, and exposes all of the standard objects, custom objects, and any custom fields through the SOAP interface.
24. All messages that were generated for all components on the current page. If an or component is not included in a page, most warning and error messages are only shown in the debug log.
25. To leverage functionality of Standard Controllers, while simultaneously adding custom logic, you must write a custom class that extends the standard controller. You notify the Visualforce page of your customizations via the extensions" attribute of the tag."