Exam 450

Description

Salesforce Quiz on Exam 450, created by Rodolfo Noviski on 13/01/2017.
Rodolfo Noviski
Quiz by Rodolfo Noviski, updated more than 1 year ago
Rodolfo Noviski
Created by Rodolfo Noviski over 7 years ago
599
2

Resource summary

Question 1

Question
What layer of model-view-controller paradigm are standard or custom objects associated with?
Answer
  • Model
  • View
  • Controller
  • View and Controller

Question 2

Question
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?
Answer
  • Many-to-many
  • Master-Detail
  • Lookup
  • Hierarchical

Question 3

Question
What must a developer consider when inserting data via an API based tool? (Choose 2)
Answer
  • Validation Rules are Respected
  • APEX Triggers are ignored
  • Required fields on page layouts are enforced
  • Universally required field settings are respected

Question 4

Question
Which Salesforce Formula Function can return a value based on more than two different field parameters?
Answer
  • Beings
  • CASE Statement
  • IF Statement
  • Contains

Question 5

Question
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.
Answer
  • True
  • False

Question 6

Question
Which of the following is true about Roll-up summary fields?
Answer
  • 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.

Question 7

Question
Which edition of Salesforce is API access not available for by default?
Answer
  • Unlimited
  • Professional
  • All Editions
  • Developer

Question 8

Question
What are the three different custom tabs you can create? (Choose 3)
Answer
  • APEX Tab
  • Web Tab
  • Custom Object Tab
  • Standard Object Tab
  • Visualforce Tab

Question 9

Question
What do the first 3 characters of a Salesforce Record ID identify? e.g. 00Q2400000198J8
Answer
  • The location on the storage pod
  • The serial number in the data centre
  • The storage field identifier
  • The Object type

Question 10

Question
What type of field needs to be wrapped in a function (In a formula) to be accessed?
Answer
  • Picklist
  • Date/Time
  • Long Text Field
  • Currency

Question 11

Question
What is true about a custom tab?
Answer
  • 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

Question 12

Question
If a child record in a master detail relationship is deleted, the parent is deleted.
Answer
  • True
  • False

Question 13

Question
When would a developer use upsert and external IDs? (Choose 2)
Answer
  • 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

Question 14

Question
What is the maximum number of master-detail lookup relationships allowable per object?
Answer
  • 4
  • 2
  • 3
  • 1

Question 15

Question
When building a custom application, a developer can include a custom icon for the app?
Answer
  • True
  • False

Question 16

Question
What are required pieces of a validation rule? (Choose 3)
Answer
  • Error Message
  • Condition Formula
  • Return Value
  • Description
  • Rule Name

Question 17

Question
Which feature sets the base level of access to an object?
Answer
  • Public Groups
  • Organizational Wide Defaults
  • Roles
  • Profiles

Question 18

Question
Which of the following is not a valid return type of a custom formula?
Answer
  • Decimal
  • Date
  • Array
  • Text

Question 19

Question
Which of the following statements are true about Record ID’s? (Choose 2)
Answer
  • 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

Question 20

Question
Standard picklist fields can be controlling or dependent?
Answer
  • True
  • False

Question 21

Question
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?
Answer
  • Workflow Rule
  • Apex Trigger on Object B
  • Apex Trigger on Object A
  • Visualforce page

Question 22

Question
Name the language Force.com uses to support full-text search in Objects
Answer
  • SOSL
  • Visualforce
  • SQL
  • SOQL

Question 23

Question
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?
Answer
  • Disable Visible and Read-Only
  • Enable Visible but Disable Read-Only
  • Disable Visible but Enable Read-Only
  • Enable Visible and Read-Only

Question 24

Question
Before code can be deployed in production, what percentage of test coverage must be achieved?
Answer
  • 75
  • 25
  • 50
  • 100

Question 25

Question
There is more than 1 version of a Salesforce Record ID?
Answer
  • True
  • False

Question 26

Question
Currently defined picklist values are retained when you change a picklist to a multi-select picklist?
Answer
  • True
  • False

Question 27

Question
Which of the following is not a sandbox type?
Answer
  • Developer
  • Partial Data
  • Professional
  • Full

Question 28

Question
An organization needs to create a public website that displays data from Salesforce.com organization without user registration.
Answer
  • Visualforce
  • Apex
  • Salesforce Knowledgebase
  • Force.com sites

Question 29

Question
The organization IDs of your sandboxes remain same each time your sandbox is refreshed
Answer
  • True
  • False

Question 30

Question
How can you make a field mandatory? (Choose 3)
Answer
  • 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

Question 31

Question
How many components can a Dashboard have?
Answer
  • 100
  • 50
  • 10
  • 20

Question 32

Question
Roll-up Summaries are only available on what type of relationship?
Answer
  • Apex relationship
  • Formula relationship
  • Lookup relationship
  • Master-Detail relationship

Question 33

Question
Which of the following represent correct syntax to display first name from global variable user?
Answer
  • {User.FirstName}
  • {!User.FirstName}
  • $User.FirstName
  • {!$User.FirstName}

Question 34

Question
Your manager has asked you to create an object with radio buttons that track a rating of 1-5, how will you achieve this?
Answer
  • 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

Question 35

Question
What is API Access?
Answer
  • 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.

Question 36

Question
Object A has a lookup to object B. Which of the following statements are true? (Chosse 2)
Answer
  • 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

Question 37

Question
Which of these is true about the Lookup Relationship?
Answer
  • 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

Question 38

Question
Which of the following cannot be included in a VisualForce page?
Answer
  • HTML
  • Flash
  • Javascript
  • Java

Question 39

Question
What is the name for an object that enables a many-to-many relationship between two other objects?
Answer
  • Child Object
  • Parent Object
  • Junction Object
  • Connector Object
  • Schema Object

Question 40

Question
What is true about Master-Detail relationships? (Choose 2)
Answer
  • 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

Question 41

Question
What can a cross-object formula reference?
Answer
  • Records of the same Object
  • Child Only
  • Parent Only
  • Both Parent and Child objects

Question 42

Question
Customer services wish to analyse how many open cases there are each day over a period of time. How can they achieve this?
Answer
  • Summary Reports
  • Matrix Reports
  • Tabular Reports
  • Analytic Snapshot

Question 43

Question
Which of the following cannot be done via a Workflow?
Answer
  • Create an Email Alert
  • Create an Event
  • Create an Outbound Message
  • Create a Task

Question 44

Question
What is true about a junction object?
Answer
  • 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

Question 45

Question
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?
Answer
  • Workflow rule
  • Assignment rule
  • Validation rule
  • Cross-object formula field

Question 46

Question
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?
Answer
  • 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

Question 47

Question
A field designated as required, is only required when it is added to a user’s page layout
Answer
  • True
  • False

Question 48

Question
Which of these is not a valid report type?
Answer
  • Detailed
  • Summary
  • Tabular
  • Matrix

Question 49

Question
Select the data types that are supported by formula fields (Choose 3)
Answer
  • E-mail
  • Text
  • Currency
  • Percent
  • Phone

Question 50

Question
What language is used to query Salesforce for specific information?
Answer
  • SQL
  • SOQL
  • SOSL
  • Apex

Question 51

Question
Can you use an IF statement in a formula field?
Answer
  • True
  • False

Question 52

Question
How do you highlight totals in a report?
Answer
  • Custom summary field
  • Formula Field
  • Roll-up summary field
  • Summary totals

Question 53

Question
What type of data cannot be imported using the import wizard?
Answer
  • Users
  • Accounts and Contacts
  • Leads
  • Custom Objects

Question 54

Question
What is a self relationship?
Answer
  • 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

Question 55

Question
Name the prefix used by standard Visualforce markup tags.
Answer
  • apex
  • vf
  • s
  • c

Question 56

Question
To create a new VisualForce page HelloWorld in development mode, which URL should be appended to the server address?
Answer
  • /HelloWorld
  • /apex/HelloWorld
  • /vf/HelloWorld
  • /home/HelloWorld

Question 57

Question
What is the maximum number of fields that can be added to an object?
Answer
  • No limit
  • 500
  • 200
  • 100

Question 58

Question
What type of field cannot be used in a formula field?
Answer
  • Date/Time
  • Text Area (Long)
  • Standard Fields
  • Other Formula Fields

Question 59

Question
What is the maximum number of external IDs an object may have?
Answer
  • 7
  • 3
  • 5
  • 1

Question 60

Question
Which functionality is NOT available on a custom object?
Answer
  • Validation Rules
  • Workflows
  • Assignment Rules
  • Record Types

Question 61

Question
A developer creates a method in an Apex class and needs to ensure that errors are handled properly. (Choose 3)
Answer
  • ApexPages.addErrorMessage()
  • A custom exception
  • .addError()
  • Database.handleException()
  • A try/catch construct

Question 62

Question
In the Lightning Component framework, where is client-side controller logic contained?
Answer
  • Apex
  • Visualforce
  • HTML
  • JavaScript

Question 63

Question
Which three use case requires a partial copy or full sandbox? (Choose 3)
Answer
  • Scalability Testing
  • Development Testing
  • Quality Assurance Testing
  • Batch Data Testing
  • Integration Testing

Question 64

Question
Which two are valid in the where clause of a SOQL query? (Choose 2)
Answer
  • A geolocation field
  • An encrypted field.
  • An aggregate function.
  • An alias notation

Question 65

Question
What is the correct way to describe how Model-View-Controller (MVC) architecture is implemented on the Salesforce platform?
Answer
  • 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

Question 66

Question
What is the maximum size of a VisualForce page?
Answer
  • 1MB
  • 5MB
  • 15MB
  • There is no limit on the size of a VisualForce page
Show full summary Hide full summary

Similar

SALESFORCE ADM-201 Certification Exam 1
Hawerth Castro
SALESFORCE ADM-201 Certification Exam 2
Hawerth Castro
SALESFORCE ADM-201 Certification Exam 7
Hawerth Castro
SALESFORCE DEV-401 Certification Evaluation 1
Hawerth Castro
SALESFORCE DEV-401 Certification Evaluation 2
Hawerth Castro
SalesForce CRM
Pablo Enrico
Salesforce ADM201
Guilherme Monteiro
SALESFORCE ADM-201 Certification Exam 5
Renan Soares
SALESFORCE ADM-201 Certification Exam 5
Rick Martin
SALESFORCE DEV-401 Certification Evaluation 1
Rick Martin
SALESFORCE DEV-401 Certification Evaluation 2
Rick Martin