3 Months Free Update
3 Months Free Update
3 Months Free Update
What datatype is used for standard or custom objects that store record data? (No Answer)
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
Object B has a lookup relationship to Object A. Object C has a lookup relationship to Object B. A developer needs to run a report on A records with C records.
How can the developer accomplish this?
If the error message contains HTML markup, the escaped markup displays as text and isn't rendered in the user interface. (Select all that apply)
What does each email service have for which users can send messages? (No Answer)
This component provides inline editing support to
The
See also: the inlineEdit attribute of
What are the types of exception classes developers can choose between in Apex? (No Answer)
To aid ___________, each Visualforce page and custom component is saved with version settings for the specified version of the API as well as the specific version of Visualforce.
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?
An HTML input element of type checkbox. Use this component to get user input for a controller method that does not correspond to a field on a Salesforce object.
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
Which trigger context variable is not saved in the after trigger and causes an exception to be thrown?
What term indicates that Salesforce is a platform which allows clients to share hardware, storage and other infrastructure?
In a master-detail relationship, what happens to the child records if the parent record is deleted?
Universal Containers requires that some employees are able to view and edit records of a custom object called Positions, but no users can delete them.
How can Universal Containers accomplish this goal?
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.
How can the default profile under which Webservices execute be changed? (No Answer)
An HTML input element of type text. Use this component to get user input for a controller method that does not correspond to a field on a Salesforce object.
This component does not use Salesforce styling. Also, since it does not correspond to a field, or any other data on an object, custom code is required to use the value the user inputs.
Developers can use Visualforce to create a Visualforce page definition. A page definition consists of two primary elements:
Visualforce markup consists of... (Select all that apply)
A single column in a table. An
Note that if you specify an sObject field as the value attribute for an
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
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)
The markup defines the user interface components that should be included on the page, and the way they should appear.
In a recruiting application, all users should be able to see positions with a status of Open. If the status is anything other than Open, the position should be visible only to the record owner.
How would a developer accomplish this? Choose 2 answers
This tag acts as a placeholder for your dynamic Apex components. It has one required parameter—component Value—which accepts the name of an Apex method that returns a dynamic component.
The following Visualforce components do not have dynamic Apex representations:
Any non-
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
The Log a Call publisher lets support agents who use Case Feed create logs for customer calls. This component can only be used in organizations that have Case Feed, Chatter, and feed tracking on cases enabled.
Which type of for loops are defined with the following syntax?
FOR(initstmt; exit_condition; increment stmt){
codeblock
}
How should one prevent soql injection when using dynamic soql? (No Answer)
The standard detail page for a particular object, as defined by the associated page layout for the object in Setup. This component includes attributes for including or excluding the associated related lists, related list hover links, and title bar that appear in the standard Salesforce application interface.
An HTML input element of type hidden, that is, an input element that is invisible to the user. Use this component to pass variables from page to page.
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.
What name identifies datatypes such as Integer, Boolean, String and Enum in Salesforce?
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.
A data series to be rendered as bars 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 bar, as well as the X and Y axes to scale against.
Note: This component must be enclosed within an
Objects of this Apex class specify one of the possible values for a Visualforce selectCheckboxes, selectList, or selectRadio component.
What is the total number of messages that all email services put together can process in a day? (No Answer)
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?
Which standard profile has the "View Encrypted Data" permission by default?
Match the Force.com platform aspects with their corresponding descriptions.
When do users have the option to manually share records they own from the record detail page?
What two ways are available to customize and create applications in salesforce? (No Answer)
Which statement is TRUE about master-detail relationships in the Force.com platform? Choose 2 answers
What interface does the Apex email handler implement to setup and inbound email service?
This integration resource provides generic access to any organization, and exposes standard objects and fields through the SOAP interface.
Like other Apex classes, custom controllers execute entirely in ____________, in which the object and field-level permissions of the current user are ignored.
Which environments can developers write code? (Select all that apply.)
Although Trigger.new is a collection of records, when used as a bind variable in a SOQL query, Apex automatically....
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?
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?
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
Defines tooltips which appear on mouseover 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 (
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.