DEV 401 Certification

Sample questions for DEV 401 Certification :



1.             In the statement below, controller refers to what type of controller? Select the one correct answer. <apex:page controller="AccountController">

A.            Standard Controller

B.            Custom Controller

C.            Controller Extension

D.            Specific Controller

Answer : B
 

2.             Which of the following represent correct syntax to display first name from global variable user? Select the one correct answer.

A.            {User.FirstName}

B.            {!User.FirstName}

C.            $User.FirstName

D.            {!$User.FirstName}

Answer : D
 

3.             Which of these is not a standard profile? Select the one correct answer.

A.            Developer

B.            Contract Manager

C.            Read only

D.            Solution Manager

Answer : A.
 

4.             Name the language Force.com uses to support full-text search in objects. Select the one correct answer.

A.            SQL

B.            VisualForce

C.            SOQL

D.            SOSL

Answer : D
 

5.             Before a code can be deployed on production what percentage of test coverage must be achieved. Select the one correct answer.

A.            25%

B.            50%

C.            75%

D.            100%

6.             In Salesforce what is the maximum number of fields that can be added to an object? Select the one correct answer.

A.            There is no such limit on the number of fields

B.            100

C.            200

D.            500

7.             How many characters are there in the Salesforce case-insensitive id field of an object? Select the one correct answer.

A.            id field is not mandatory

B.            The field length is customizable

C.            This depends on the version of Salesforce

D.            18

8.             Name the prefix used by standard VisualForce markup tags. Select the one correct answer.

A.            vf

B.            apex

C.            c

D.            s

9.             Which of the following cannot be included in a VisualForce page? Select the one correct answer.

A.            Java

B.            JavaScript

C.            HTML

D.            Flash

10.          To create a new VisualForce page HelloWorld in developer mode, which URL should be appended to server address? Select the one correct answer.

A.            /HelloWorld

B.            /vf/HelloWorld

C.            /apex/HelloWorld

D.            /home/HelloWorld

11.          What is the maximum size of a VisualForce page? Select the one correct answer.

A.            1 MB

B.            5 MB

C.            15 MB

D.            There is no limit on the size of a VisualForce page

12.          What is the number of components that can be added to a dashboard? Select the one correct answer.

A.            20

B.            25

C.            50

D.            100

13.          Which of these represent the correct syntax for custom controllers? Select the one correct answer.

A.            <apex:page controller="MyController">

B.            <apex:page standardController="MyController">

C.            <apex:page customController="MyController">

D.            <apex:page privateController="MyController">

14.          Which is the first step when creating reports? Select the one correct answer.

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

15.          Which of these is not a valid report type. Select the one correct answer.

A.            Summary

B.            Matrix

C.            Tabular

D.            Detailed

Comments

Popular Posts