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
An area of a page that includes content from a second template page. Template pages are Visualforce pages that include one or more < apex:insert > components. The < apex:composition > component names the associated template, and provides body for the template ' s < apex:insert > components with matching < apex:define > components. Any content outside of an < apex:composition > component is not rendered.
Universal Containers tracks reviews as a custom object in a recruiting application. An interview score is tracked on each review record and should be numerical, so that hiring managers can perform score calculations. The scores should be restricted to Integer values l through 5 and displayed as a set of radio buttons.
How can a developer meet this requirement?
In a bug tracking application. Universal Containers has created a time-based workflow action that will execute 30 days after a Bug record is created. The developer would like to test to make sure that rule is working the way that it should.
Which feature is available for testing? Choose 2 answers
Objects of this Apex class allow developers to create list controllers similar to, or as extensions of, the pre-built Visualforce list controllers provided by Salesforce.
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.
When do users have the option to manually share records they own from the record detail page?
Which keywords should u specify to define a constant?
static and exception
static and final
static and private
exception and final(No Answer)
A button that is rendered as an HTML input element with the type attribute set to submit, reset, or image, depending on the < apex:commandButton > 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 < apex:commandButton > component must always be a child of an < apex:form > component.
See also: < apex:commandLink >
What statements are used to retrieve records from an sObject in the Force.com database? (No Answer)
Defines an axis for a chart. Use this to set the units, scale, labeling, and other visual options for the axis. You can define up to four axes for a single chart, one for each edge.
Note: This component must be enclosed within an < apex:chart > component. This component is only applicable to bar and line charts.
Universal Containers tracks Positions as a custom object in a recruiting application. All positions with a priority of critical should NOT be open for more than two weeks. If a position remains open for more than 14 days, the priority should be re-examined.
How would a developer automate this process?
What datatype is used for standard or custom objects that store record data? (No Answer)
An area of a Visualforce page that demarcates which components should be processed by the Force.com server when an AJAX request is generated. Only the components in the body of the < apex:actionRegion > are processed by the server, thereby increasing the performance of the page.
Hiring managers at Universal Containers would like a visual mechanism for determining review score outliers. Review scores are captured as a custom field on a custom Review object and can range from l to 10. Any review score that is > 8 should be highlighted in green.
Any review score that is < 4 should be highlighted In red.
How would a developer accomplish this?
An HTML table that is defined by iterating over a set of data, displaying information about one item of data per row. The body of the < apex:dataTable > contains one or more column components that specify what information should be displayed for each item of data. The data set can include up to 1,000 items.
A developer needs to support multiple currencies for a custom object in an application. The multi-currency feature has been enabled for the organization.
What does the developer need to know in order to successfully support this application? Choose 2 answers
A user can only see the fields A, B, and C on a record of Object X until the Stage field value on the record changes from New to Working. Once the Stage field value is updated to Working and the record is saved, the user should be able to see fields A, B, C, and D.
How would an application developer configure this?
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 < apex:page > tag.
Objects of this Apex class specify one of the possible values for a Visualforce selectCheckboxes, selectList, or selectRadio component.
Which statement is true about an Apex class?
A class cannot be disabled for profiles.
An inner class can be nested at multiple levels.
Static methods can only be declared in a top-level class definition.
The default access modifier for methods in a class is public.
Total number of test classes that can be queued per a 24-hour period (as of Spring ' 13): The greater of 500 or 10 multiplied by the number of test classes in the organization
A data series to be rendered as connected points in a Visualforce chart. At a minimum you must specify the fields in the data collection to use as X and Y values for each point, as well as the X and Y axes to scale against.
Note: This component must be enclosed within an < apex:chart > component. You can have multiple < apex:barSeries > and < apex:lineSeries > components in a single chart.
A developer is loading data, in CSV format, into a custom application from a legacy system. The developer would like to load users into the user object, and positions and job applications owned by named users into related custom objects.
Which obstacle will the developer encounter when using the import wizard?
Which exception type should be checked for when catching exceptions thrown when governor limits are exceeded?
For example, if you use the standard Accounts controller, clicking a Save button in a Visualforce page results in the same behavior as clicking Save on a standard Account edit page. The same behavior holds true for Custom objects.
This tag allows a custom component author to define a location where a user can insert content into the custom component. This is especially useful for generating custom iteration components. This component is valid only within an < apex:component > tag, and only a single definition per custom component is allowed.
The markup defines the user interface components that should be included on the page, and the way they should appear.
An ordered or unordered list of values that is defined by iterating over a set of data. The body of the < apex:dataList > component specifies how a single item should appear in the list. The data set can include up to 1,000 items.
Universal Containers has built a recruiting application with two custom objects, Job Applications and Reviews that have a master-detail relationship. Users should NOT be allowed to delete review records after job application records have been approved.
How would a developer meet this requirement?
Defines a chart legend. This component offers additional configuration options beyond the defaults used by the legend attribute of the < apex:chart > component.
Note: This component must be enclosed within an < apex:chart > component.
Which syntax should you use to create a new public class named MyNewClass?
Public class MyNewClass {}
Class public MyNewClass {}
Class MyNewClass {} public
MyNewClass public {} class(No Answer)
This Apex class lets a developer create an action method that can be used in a Visualforce custom controller or controller extension.
A single piece of data in an < apex:pageBlockSection > that takes up one column in one row. An < apex:pageBlockSectionItem > component can include up to two child components. If no content is specified, the column is rendered as an empty space. If one child component is specified, the content spans both cells of the column. If two child components are specified, the content of the first is rendered in the left, " label " cell of the column, while the content of the second is rendered in the right, " data " cell of the column.
Note that if you include an < apex:outputField > or an < apex:inputField > component in an < apex:pageBlockSectionItem > , these components do not display with their label or custom help text as they do when they are children of an < apex:pageBlockSectionItem > . Also note that < apex:pageBlockSectionItem > components cannot be rerendered; rerender the child components instead.
This component provides inline editing support to < apex:outputField > and various container components. In order to support inline editing, this component must also be within an < apex:form > tag.
The < apex:inlineEditSupport > component can only be a descendant of the following tags:
< apex:dataList >
< apex:dataTable >
< apex:form >
< apex:outputField >
< apex:pageBlock >
< apex:pageBlockSection >
< apex:pageBlockTable >
< apex:repeat >
See also: the inlineEdit attribute of < apex:detail >
If a change is made to an approval process, how can a developer determine the user that made the change? Choose 2 answers
Which statement is TRUE about master-detail relationships in the Force.com platform? Choose 2 answers
Positions is a custom object in a recruiting application built on the Force.com platform. Department is a field on the Position object.
Which type of report should a developer create to show hiring managers the number of positions grouped by department?
This Apex class offers Ideas-specific functionality in addition to what is provided by the StandardController class.
What does Apex provide to support programmatic control of the workflow? (No Answer)
A component that creates an inline frame within a Visualforce page. A frame allows you to keep some information visible while other information is scrolled or replaced.
Although Trigger.new is a collection of records, when used as a bind variable in a SOQL query, Apex automatically....
A component that inserts a second Visualforce page into the current page. The entire page subtree is injected into the Visualforce DOM at the point of reference and the scope of the included page is maintained.
If content should be stripped from the included page, use the < apex:composition > component instead.
What components of apex are available to improve the processing of data in Salesforce?
A definition of an attribute on a custom component. The attribute tag can only be a child of a component tag.
Note that you cannot define attributes with names like id or rendered. These attributes are automatically created for all custom component definitions.
A template component that provides content for an < apex:insert > component defined in a Visualforce template page.
See also: < apex:composition > , < apex:insert >
What determines how the email service responds when an attempt to access the email service fails? (No Answer)