Pregunta 1
Pregunta
What layer of model-view-controller paradigm are standard or custom objects associated with?
Respuesta
-
Model
-
View
-
Controller
-
View and Controller
Pregunta 2
Pregunta
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?
Respuesta
-
Many-to-many
-
Master-Detail
-
Lookup
-
Hierarchical
Pregunta 3
Pregunta
What must a developer consider when inserting data via an API based tool?
(Choose 2)
Respuesta
-
Validation Rules are Respected
-
APEX Triggers are ignored
-
Required fields on page layouts are enforced
-
Universally required field settings are respected
Pregunta 4
Pregunta
Which Salesforce Formula Function can return a value based on more than two different field parameters?
Respuesta
-
Beings
-
CASE Statement
-
IF Statement
-
Contains
Pregunta 5
Pregunta
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.
Pregunta 6
Pregunta
Which of the following is true about Roll-up summary fields?
Respuesta
-
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.
Pregunta 7
Pregunta
Which edition of Salesforce is API access not available for by default?
Respuesta
-
Unlimited
-
Professional
-
All Editions
-
Developer
Pregunta 8
Pregunta
What are the three different custom tabs you can create?
(Choose 3)
Respuesta
-
APEX Tab
-
Web Tab
-
Custom Object Tab
-
Standard Object Tab
-
Visualforce Tab
Pregunta 9
Pregunta
What do the first 3 characters of a Salesforce Record ID identify?
e.g. 00Q2400000198J8
Respuesta
-
The location on the storage pod
-
The serial number in the data centre
-
The storage field identifier
-
The Object type
Pregunta 10
Pregunta
What type of field needs to be wrapped in a function (In a formula) to be accessed?
Respuesta
-
Picklist
-
Date/Time
-
Long Text Field
-
Currency
Pregunta 11
Pregunta
What is true about a custom tab?
Respuesta
-
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
Pregunta 12
Pregunta
If a child record in a master detail relationship is deleted, the parent is deleted.
Pregunta 13
Pregunta
When would a developer use upsert and external IDs?
(Choose 2)
Respuesta
-
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
Pregunta 14
Pregunta
What is the maximum number of master-detail lookup relationships allowable per object?
Pregunta 15
Pregunta
When building a custom application, a developer can include a custom icon for the app?
Pregunta 16
Pregunta
What are required pieces of a validation rule?
(Choose 3)
Respuesta
-
Error Message
-
Condition Formula
-
Return Value
-
Description
-
Rule Name
Pregunta 17
Pregunta
Which feature sets the base level of access to an object?
Pregunta 18
Pregunta
Which of the following is not a valid return type of a custom formula?
Pregunta 19
Pregunta
Which of the following statements are true about Record ID’s?
(Choose 2)
Respuesta
-
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
Pregunta 20
Pregunta
Standard picklist fields can be controlling or dependent?
Pregunta 21
Pregunta
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?
Respuesta
-
Workflow Rule
-
Apex Trigger on Object B
-
Apex Trigger on Object A
-
Visualforce page
Pregunta 22
Pregunta
Name the language Force.com uses to support full-text search in Objects
Respuesta
-
SOSL
-
Visualforce
-
SQL
-
SOQL
Pregunta 23
Pregunta
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?
Respuesta
-
Disable Visible and Read-Only
-
Enable Visible but Disable Read-Only
-
Disable Visible but Enable Read-Only
-
Enable Visible and Read-Only
Pregunta 24
Pregunta
Before code can be deployed in production, what percentage of test coverage must be achieved?
Pregunta 25
Pregunta
There is more than 1 version of a Salesforce Record ID?
Pregunta 26
Pregunta
Currently defined picklist values are retained when you change a picklist to a multi-select picklist?
Pregunta 27
Pregunta
Which of the following is not a sandbox type?
Respuesta
-
Developer
-
Partial Data
-
Professional
-
Full
Pregunta 28
Pregunta
An organization needs to create a public website that displays data from Salesforce.com organization without user registration.
Respuesta
-
Visualforce
-
Apex
-
Salesforce Knowledgebase
-
Force.com sites
Pregunta 29
Pregunta
The organization IDs of your sandboxes remain same each time your sandbox is refreshed
Pregunta 30
Pregunta
How can you make a field mandatory?
(Choose 3)
Respuesta
-
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
Pregunta 31
Pregunta
How many components can a Dashboard have?
Pregunta 32
Pregunta
Roll-up Summaries are only available on what type of relationship?
Pregunta 33
Pregunta
Which of the following represent correct syntax to display first name from global variable user?
Respuesta
-
{User.FirstName}
-
{!User.FirstName}
-
$User.FirstName
-
{!$User.FirstName}
Pregunta 34
Pregunta
Your manager has asked you to create an object with radio buttons that track a rating of 1-5, how will you achieve this?
Respuesta
-
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
Pregunta 35
Pregunta
What is API Access?
Respuesta
-
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.
Pregunta 36
Pregunta
Object A has a lookup to object B. Which of the following statements are true?
(Chosse 2)
Respuesta
-
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
Pregunta 37
Pregunta
Which of these is true about the Lookup Relationship?
Respuesta
-
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
Pregunta 38
Pregunta
Which of the following cannot be included in a VisualForce page?
Respuesta
-
HTML
-
Flash
-
Javascript
-
Java
Pregunta 39
Pregunta
What is the name for an object that enables a many-to-many relationship between two other objects?
Respuesta
-
Child Object
-
Parent Object
-
Junction Object
-
Connector Object
-
Schema Object
Pregunta 40
Pregunta
What is true about Master-Detail relationships?
(Choose 2)
Respuesta
-
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
Pregunta 41
Pregunta
What can a cross-object formula reference?
Pregunta 42
Pregunta
Customer services wish to analyse how many open cases there are each day over a period of time. How can they achieve this?
Respuesta
-
Summary Reports
-
Matrix Reports
-
Tabular Reports
-
Analytic Snapshot
Pregunta 43
Pregunta
Which of the following cannot be done via a Workflow?
Pregunta 44
Pregunta
What is true about a junction object?
Respuesta
-
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
Pregunta 45
Pregunta
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?
Pregunta 46
Pregunta
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?
Respuesta
-
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
Pregunta 47
Pregunta
A field designated as required, is only required when it is added to a user’s page layout
Pregunta 48
Pregunta
Which of these is not a valid report type?
Respuesta
-
Detailed
-
Summary
-
Tabular
-
Matrix
Pregunta 49
Pregunta
Select the data types that are supported by formula fields
(Choose 3)
Respuesta
-
E-mail
-
Text
-
Currency
-
Percent
-
Phone
Pregunta 50
Pregunta
What language is used to query Salesforce for specific information?
Pregunta 51
Pregunta
Can you use an IF statement in a formula field?
Pregunta 52
Pregunta
How do you highlight totals in a report?
Respuesta
-
Custom summary field
-
Formula Field
-
Roll-up summary field
-
Summary totals
Pregunta 53
Pregunta
What type of data cannot be imported using the import wizard?
Respuesta
-
Users
-
Accounts and Contacts
-
Leads
-
Custom Objects
Pregunta 54
Pregunta
What is a self relationship?
Respuesta
-
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
Pregunta 55
Pregunta
Name the prefix used by standard Visualforce markup tags.
Pregunta 56
Pregunta
To create a new VisualForce page HelloWorld in development mode, which URL should be appended to the server address?
Respuesta
-
/HelloWorld
-
/apex/HelloWorld
-
/vf/HelloWorld
-
/home/HelloWorld
Pregunta 57
Pregunta
What is the maximum number of fields that can be added to an object?
Pregunta 58
Pregunta
What type of field cannot be used in a formula field?
Respuesta
-
Date/Time
-
Text Area (Long)
-
Standard Fields
-
Other Formula Fields
Pregunta 59
Pregunta
What is the maximum number of external IDs an object may have?
Pregunta 60
Pregunta
Which functionality is NOT available on a custom object?
Respuesta
-
Validation Rules
-
Workflows
-
Assignment Rules
-
Record Types
Pregunta 61
Pregunta
A developer creates a method in an Apex class and needs to ensure that errors are handled properly.
(Choose 3)
Pregunta 62
Pregunta
In the Lightning Component framework, where is client-side controller logic contained?
Respuesta
-
Apex
-
Visualforce
-
HTML
-
JavaScript
Pregunta 63
Pregunta
Which three use case requires a partial copy or full sandbox?
(Choose 3)
Pregunta 64
Pregunta
Which two are valid in the where clause of a SOQL query?
(Choose 2)
Respuesta
-
A geolocation field
-
An encrypted field.
-
An aggregate function.
-
An alias notation
Pregunta 65
Pregunta
What is the correct way to describe how Model-View-Controller (MVC) architecture is implemented on the Salesforce platform?
Respuesta
-
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
Pregunta 66
Pregunta
What is the maximum size of a VisualForce page?