Exam Logo

Salesforce (DEV-501) Exam Questions And Answers page 4

Defines how labels are displayed. Depending on what component wraps it, gives you options for affecting labels for bar and line series labels, pie chart segments, and axes labels.
Note: This component must be enclosed by a data series component (, , or ) or an component.
Apex Visualforce Controllers
Defines tooltips which appear on mouse over of data series elements. This component offers more configuration options than the default tooltips displayed by setting the tips attribute of a data series component to true.
Note: This component must be enclosed by a data series component (, , or ).
Apex
Developers can use Visualforce to create a Visualforce page definition. A page definition consists of two primary elements:
• Visualforce markup
• A Visualforce controller

Visualforce markup consists of... (Select all that apply)
Visualforce Controllers Visualforce Controllers
Displays text on a Visualforce page. You can customize the appearance of using CSS styles, in which case the generated text is wrapped in an HTML tag. You can also escape the rendered text if it contains sensitive HTML and XML characters. This component does take localization into account.

Use with nested param tags to format the text values, where {n} corresponds to the n-th nested param tag. The value attribute supports the same syntax as the MessageFormat class in Java. See the MessageFormat class JavaDocs for more information.
Warning:Encrypted custom fields that are embedded in the component display in clear text. The component doesn't respect the View Encrypted Data permission for users. To prevent showing sensitive information to unauthorized users, use the tag instead.
Visualforce Controllers Visualforce Controllers
__________ enables you to create Visualforce pages that can display or act on a set of records.
Visualforce Controllers Visualforce Controllers
Good Apex tests should....
Apex Controllers Apex
How are programmatic cusomizations done in Salesforce?
Apex Controllers Apex
How are static methods and attributes access?
Apex
How do you call Web Services from external sources?
Apex
How should one prevent soql injection when using dynamic soql?
Apex