Salesforce DEV401 Flashcards
Salesforce Dev401 Certification
How many characters are there in the Salesforce case-insensitive id field of an object?
A. ID field is not mandatory
B. The field length is customizable
C. This depends on the version of Salesforce
D. 18
D. 18
What is the number of components that can be added to a dashboard? A. 20 B. 25 C. 50 D. 100
A. 20
The number of Lookup relationship that an object can have are: A. 1 B. 2 C. 25 D. 300
C. 25
The number of master detail relationship that an object can have are: A. 1 B. 2 C. 25 D. 300
B. 2
In the statement below, controller refers to what type of controller? apex:page controller="AccountController" A. Standard Controller B. Custom Controller C. Controller Extension D. Specific Controller
B. Custom Controller
Which of the following represent correct syntax to display first name from global variable user? A. {User.FirstName} B. {!User.FirstName} C. $User.FirstName D. {!$User.FirstName}
B. {!User.FirstName}
Which of these is not a standard profile? A. Developer B. Contract Manager C. Read only D. Solution Manager
A. There is no developer standard profile.
Name the language Force.com uses to support full-text search in objects. A. SQL B. VisualForce C. SOQL D. SOSL
D. SOSL (Salesforce Object Search Language)
Before a code can be deployed on production what percentage of test coverage must be achieved. A. 25% B. 50% C. 75% D. 100%
C. The code must get a test coverage of 75% before it can be deployed.
In Salesforce what is the maximum number of fields that can be added to an object?
A. There is no such limit on the number of fields
B. 100
C. 200
D. 500
D. There can be a maximum of 500 fields in custom objects.
In Salesforce what is the maximum number of fields that can be added to an object?
A. There is no such limit on the number of fields
B. 100
C. 200
D. 500
D. There can be a maximum of 500 fields in custom objects.
Name the prefix used by standard VisualForce markup tags. A. vf B. apex C. c D. s
B. The prefix apex is used for standard VisualForce markup tags.
Which of the following cannot be included in a VisualForce page? A. Java B. JavaScript C. HTML D. Flash
A. It is not possible to include Java code in VisualForce page.
To create a new VisualForce page HelloWorld in developer mode, which URL should be appended to server address? A. /HelloWorld B. /vf/HelloWorld C. /apex/HelloWorld D. /home/HelloWorld
C. VisualForce page address appears like /apex/HelloWorld.
What is the maximum size of a VisualForce page?
A. 1 MB
B. 5 MB
C. 15 MB
D. There is no limit on the size of a VisualForce page
C. VisualForce pages must be upto 15 MB.
Which of these represent the correct syntax for custom controllers?
A. apex:page controller=”MyController”
B. apex:page standardController=”MyController”
C. apex:page customController=”MyController”
D. apex:page privateController=”MyController”
A. apex:page controller=”MyController”
Which is the first step when creating reports?
A. Select report name
B. Select object on which report needs to be generated
C. Select type of report
D. Select columns to be displayed
B. The first step when creating reports is select the object type.
Which of these is not a valid report type? A. Summary B. Matrix C. Tabular D. Detailed
D. Salesforce does not have a report type named Detailed.
Which report type is used to group ROWS of data and show their subtotals? A. Summary B. Matrix C. Tabular D. Detailed
A. Summary
Which report type is used to group ROWS AND COLUMNS of data and show their subtotals? A. Summary B. Matrix C. Tabular D. Detailed
B. Matrix
Which report type does not allow generation of charts? A. Summary B. Matrix C. Tabular D. Detailed
C. Tabular
Which of these are valid data type in Force.com development platform? (2 answers) A. Percent B. URL C. Choicebox D. Long E. Decimal
A. Percent
B. URL
When designing an application, a developer needs to make a field editable to all profiles. In field level security what settiings should be used in this situation? A. Disable Visible and Read-Only B. Disable Visible but Enable Read-Only C. Enable Visible but Disable Read-Only D. Enable Visible and Read-Only
C. To make a field editable, enable Visible but disable Read-Only.
Which report type does not support analytical snapshot? A. Summary B. Matrix C. Tabular D. Detailed
B. Matrix