What layer of model-view-controller paradigm are standard or custom objects associated with?
Model
View
Controller
View and Controller
An organization wants to create a field to store manager data on the user object. The manager field is a reference to another user record. What type of relationship should be used?
Many-to-many
Master-Detail
Lookup
Hierarchical
What must a developer consider when inserting data via an API based tool?
(Choose 2)
Validation Rules are Respected
APEX Triggers are ignored
Required fields on page layouts are enforced
Universally required field settings are respected
Which Salesforce Formula Function can return a value based on more than two different field parameters?
Beings
CASE Statement
IF Statement
Contains
A user’s profile does not have any permissions to view a custom object. However, the Organization Wide Defaults for the custom object are set to Public Read/Write. Users with this profile will still be able to access the custom object.
Which of the following is true about Roll-up summary fields?
Roll-up summary can only be set on the parent of a Master-Detail or Lookup relationship.
Roll-up summary can be used to compute SUM,MIN,MAX,AVG over a set of records
The results of the roll-up summary is displayed on the child in a master-detail relationship.
Roll-up summary fields are read only.
Which edition of Salesforce is API access not available for by default?
Unlimited
Professional
All Editions
Developer
What are the three different custom tabs you can create? (Choose 3)
APEX Tab
Web Tab
Custom Object Tab
Standard Object Tab
Visualforce Tab
What do the first 3 characters of a Salesforce Record ID identify?
e.g. 00Q2400000198J8
The location on the storage pod
The serial number in the data centre
The storage field identifier
The Object type
What type of field needs to be wrapped in a function (In a formula) to be accessed?
Picklist
Date/Time
Long Text Field
Currency
What is true about a custom tab?
It can be included in as many applications as desired
It can only be included in one application
It can only be included in custom applications
It can only be included in standard applications
If a child record in a master detail relationship is deleted, the parent is deleted.
When would a developer use upsert and external IDs?
To migrate customizations from a sandbox to production
To load related records without knowing Salesforce record IDs
To integrate with an external system
To use Web Services API to query for data
What is the maximum number of master-detail lookup relationships allowable per object?
4
2
3
1
When building a custom application, a developer can include a custom icon for the app?
What are required pieces of a validation rule?
(Choose 3)
Error Message
Condition Formula
Return Value
Description
Rule Name
Which feature sets the base level of access to an object?
Public Groups
Organizational Wide Defaults
Roles
Profiles
Which of the following is not a valid return type of a custom formula?
Decimal
Date
Array
Text
Which of the following statements are true about Record ID’s?
The 15 character ID is case-sensitive
The 18 character ID is case-sensitive
The 15 character ID is case-insensitive
The 18 character ID is case-insensitive
Standard picklist fields can be controlling or dependent?
You have Custom Object A & Custom Object B, a record has to be created on B once a certain criteria is met A, how can this be achieved?
Workflow Rule
Apex Trigger on Object B
Apex Trigger on Object A
Visualforce page
Name the language Force.com uses to support full-text search in Objects
SOSL
Visualforce
SQL
SOQL
A Developer wants to make sure that all fields on his new custom object are editable to all profiles, what should be checked on field level security?
Disable Visible and Read-Only
Enable Visible but Disable Read-Only
Disable Visible but Enable Read-Only
Enable Visible and Read-Only
Before code can be deployed in production, what percentage of test coverage must be achieved?
75
25
50
100
There is more than 1 version of a Salesforce Record ID?
Currently defined picklist values are retained when you change a picklist to a multi-select picklist?
Which of the following is not a sandbox type?
Partial Data
Full
An organization needs to create a public website that displays data from Salesforce.com organization without user registration.
Apex
Salesforce Knowledgebase
Force.com sites
The organization IDs of your sandboxes remain same each time your sandbox is refreshed
How can you make a field mandatory?
Creating a validation rule for the field
Check the required field box for the field on the record type
Create a Workflow Rule
Check the required field box on the page layout.
Check the required field box on the field definition
How many components can a Dashboard have?
10
20
Roll-up Summaries are only available on what type of relationship?
Apex relationship
Formula relationship
Lookup relationship
Master-Detail relationship
Which of the following represent correct syntax to display first name from global variable user?
{User.FirstName}
{!User.FirstName}
$User.FirstName
{!$User.FirstName}
Your manager has asked you to create an object with radio buttons that track a rating of 1-5, how will you achieve this?
Create a Visualforce page with radio buttons.
Create a radio button with 5 options
Create a formula field
Create a dependant picklist that feeds the radio button type field
What is API Access?
Is required to be able to deploy APEX Code in Force.com
Provides direct access to all data stored in Force.com from virtually any platform.
Can be given to users to allow them to access all Apps.
Allows developers to write test classes within Salesforce.
Object A has a lookup to object B. Which of the following statements are true?
(Chosse 2)
Fields of both B and A are accessible from object A
Fields of object A can be accessed from object B
Fields of object B can be accessed from object A
Fields of both A and B are accessible from object B
Which of these is true about the Lookup Relationship?
Parent is not a required field and may be omitted
Deleting an object deletes its children
Roll-up summary field can be used to perform basic operations over all children of a parent record
Security access of the child record is dependent upon the parent record
Which of the following cannot be included in a VisualForce page?
HTML
Flash
Javascript
Java
What is the name for an object that enables a many-to-many relationship between two other objects?
Child Object
Parent Object
Junction Object
Connector Object
Schema Object
What is true about Master-Detail relationships? (Choose 2)
You have to expose the master-detail field on the child object page layout
You cannot delete a child object
When the parent record is deleted, all child records will be deleted
You can have a child record without the parent record
What can a cross-object formula reference?
Records of the same Object
Child Only
Parent Only
Both Parent and Child objects
Customer services wish to analyse how many open cases there are each day over a period of time. How can they achieve this?
Summary Reports
Matrix Reports
Tabular Reports
Analytic Snapshot
Which of the following cannot be done via a Workflow?
Create an Email Alert
Create an Event
Create an Outbound Message
Create a Task
What is true about a junction object?
A standard object that has two Master-Detail relationships
A custom object that has two Master-Detail relationships
A standard object that has one Master-Detail relationship
A custom object that has one Master-Detail relationship
In a master-detail relationship scenario, the fields of the parent object need to be displayed in the related list. How will a developer achieve this design?
Workflow rule
Assignment rule
Validation rule
Cross-object formula field
In a data model object A is related to B, B is related to C. How will a developer create a report to include fields of A & C?
Create a custom report type with A,B and C, and use it in the report.
Create a custom report with A and C fields as relationships already exist
Report cannot be created
Create lookup relationships between A,B and C
A field designated as required, is only required when it is added to a user’s page layout
Which of these is not a valid report type?
Detailed
Summary
Tabular
Matrix
Select the data types that are supported by formula fields (Choose 3)
E-mail
Percent
Phone
What language is used to query Salesforce for specific information?
Can you use an IF statement in a formula field?
How do you highlight totals in a report?
Custom summary field
Formula Field
Roll-up summary field
Summary totals
What type of data cannot be imported using the import wizard?
Users
Accounts and Contacts
Leads
Custom Objects
What is a self relationship?
A lookup field to the user object
A lookup field to the same object
A lookup to global search
A relationship of account to opportunity owned by same owner
Name the prefix used by standard Visualforce markup tags.
apex
vf
s
c
To create a new VisualForce page HelloWorld in development mode, which URL should be appended to the server address?
/HelloWorld
/apex/HelloWorld
/vf/HelloWorld
/home/HelloWorld
What is the maximum number of fields that can be added to an object?
No limit
500
200
What type of field cannot be used in a formula field?
Text Area (Long)
Standard Fields
Other Formula Fields
What is the maximum number of external IDs an object may have?
7
5
Which functionality is NOT available on a custom object?
Validation Rules
Workflows
Assignment Rules
Record Types
A developer creates a method in an Apex class and needs to ensure that errors are handled properly.
ApexPages.addErrorMessage()
A custom exception
.addError()
Database.handleException()
A try/catch construct
In the Lightning Component framework, where is client-side controller logic contained?
JavaScript
Which three use case requires a partial copy or full sandbox?
Scalability Testing
Development Testing
Quality Assurance Testing
Batch Data Testing
Integration Testing
Which two are valid in the where clause of a SOQL query?
A geolocation field
An encrypted field.
An aggregate function.
An alias notation
What is the correct way to describe how Model-View-Controller (MVC) architecture is implemented on the Salesforce platform?
Model: Standard and Custom Objects; View: Visualforce Pages; Controller: sControls
Model: Schema Builder; View: List Views; Controller: Setup Console
Model: Standard and Custom Objects; View: Visualforce Pages; Controller: Apex Code
Model: Apex Code; View: List Views; Controller: Setup Console
What is the maximum size of a VisualForce page?
1MB
5MB
15MB
There is no limit on the size of a VisualForce page