A Custom Component named "myCustomComponent" is created and has the following code: <apex:component> <b> <apex:outputText value="This is a custom component."/> ...
<apex:page standardController="Account"> <c:myCustomComponent/> </apex:page> 100.0%
<apex:page standardController="Account"> <apex:myCustomComponent/> </apex:page> 0.0%
<apex:page standardController="Account"> <apex:component name="myCustomComponent" /> </apex:page> 0.0%
A VisualForce page definition consists of VisualForce Markup, which is made up of <apex:page> tags. How many such tags are allowed in a VisualForce page?
Only One 100.0%
Two 0.0%
Three 0.0%
Unlimited 0.0%
Apex allows developers to lock sObject records while they are being updated in order to prevent race conditions and other thread safety problems. Which of the following keywords is used, in SOQL st...
TABLOCK 0.0%
COMMIT 0.0%
ROWLOCK 0.0%
FOR UPDATE 100.0%
In order to modify existing customizations in an organization using XML metadata files, which of the following method calls will be used?
deploy() 100.0%
create() 0.0%
update() 0.0%
All of the above 0.0%
In which type of relationships among objects is the object not deleted when its related product is deleted?
Master-Detail 0.0%
Many-to-Many 0.0%
Lookup 100.0%
All of the above 0.0%
In which type of Salesforce Edition can a Managed package be created?
Group 0.0%
Professional 0.0%
Enterprise 0.0%
Unlimited 0.0%
Developer 100.0%
State whether the following statement is True or False. In the Iteration method of accessing components, the concept of DOM ids is used.
State whether the following statement is true or false. Unmanaged packages are completely editable in both the installer's and the developer's organizations and are not upgradeable.
State whether the statement is True or False Once records have been deleted using the emptyRecycleBin() call, they cannot be undeleted.
The create() call returns an array of SaveResult which contains the id, success, errors properties. What will be the values of these three properties respectively if the object has been created su...
null, true, null 0.0%
id generated, false, error code 0.0%
id generated, true, null 100.0%
null, false, error code 0.0%
The following is a VisualForce code snippet: <apex:page standardController="Account"> <apex:pageBlock title="Contacts"> <apex:pageBlockTable value="{!account.Contacts}" var="contact"> ...
<apex:pageBlock title="Contacts" contenttype="application/vnd.ms-excel"> 0.0%
<apex:page standardController="Account" contenttype="application/vnd.ms-excel"> 100.0%
<apex:pageBlockTable value="{!account.Contacts}" var="contact"contenttype="application/vnd.ms-excel"> 0.0%
The following is a VisualForce code snippet: <apex:page standardController="Account" recordSetVar="accounts">
It is an example of VisualForce Standard Controllers. 100.0%
It is an example of VisualForce Standard List Controllers. 0.0%
It is an example of VisualForce Custom Controllers. 0.0%
The length of Calculate Field Type in Salesforce API is 3900 characters. What will happen if the length exceeds 3900 characters?
An exception will be thrown. 0.0%
The data will be truncated. 0.0%
It will show no data. 100.0%
It will cause the application to crash. 0.0%
Unit tests are class testing methods that verify whether a particular piece of code is working properly. Which of the following is not a feature of Unit tests?
Unit test methods take no arguments. 0.0%
A Unit test commits data to the database. 100.0%
Unit tests send no emails. 0.0%
Unit test methods are always flagged with the testMethod keyword in the method definition. 0.0%
What does the WSDL describeGlobal() call return?
It retrieves a list of available objects for your organization's data. 100.0%
It retrieves metadata about page layouts for the specified object type. 0.0%
It allows the user to switch between the listed apps at any time. 0.0%
It is used to obtain metadata for a given object. 0.0%
What is meant by Cloud Computing?
It is defined as the use of scalable and virtual resources provided as a service over the Internet. 100.0%
It is defined as a cluster of networked, loosely-coupled computers used to perform large tasks. 0.0%
It is defined as the packaging of computing resources such as computation and storage to work as a metered service. 0.0%
It is defined as the ability of computer systems to perform self-management. 0.0%
What is the data type of the accountId argument in a convertLead() API call?
string 100.0%
boolean 0.0%
int 0.0%
ID 0.0%
anyType 0.0%
What is the data type of the size property of the QueryResult object returned by a query() call?
int 100.0%
boolean 0.0%
string 0.0%
textarea 0.0%
sObject 0.0%
What is the description of the Lead object?
It defines a prospect or potential Opportunity. 100.0%
It defines the rules that assign an owner to a Lead. 0.0%
It defines the status of a Lead, such as Open, Qualifed, or Converted. 0.0%
It associates a word or short phrase with a Lead. 0.0%
What is the difference between the queryAll() and queryMore() calls?
queryAll() returns the records count of more than 500 returns while queryMore() also returns the records that have been deleted because of a merge or delete. 100.0%
queryMore() returns the records count of more than 500 while queryAll() also returns the records that have been deleted because of a merge or delete. 0.0%
queryAll() returns the records when the Ids are not known while queryMore() returns the records with known Ids. 0.0%
queryMore() returns the records when the Ids are not known while queryAll() returns the records with known Ids. 0.0%
What is the field type of the AccountNumber field name of the Account object?
string 0.0%
int 0.0%
picklist 0.0%
textarea 100.0%
What is the field type of the NewValue field name of the ContractHistory object?
string 0.0%
anyType 100.0%
picklist 0.0%
textarea 0.0%
What is the functionality of a resetPassword() utility API call?
It changes the password to a system-generated value. 100.0%
It changes the password to the specified value. 0.0%
It sets the password to the initially assigned password. 0.0%
None of the above 0.0%
What is the maximum number of characters in the OldValue field of SolutionHistory object?
100 0.0%
255 100.0%
755 0.0%
1000 0.0%
There is no limit. 0.0%
What is the maximum number of Custom Apps that can be created using the Developer Edition?
1 0.0%
5 0.0%
10 100.0%
Unlimited 0.0%
What is the syntax for the logout() API call?
LogoutResult = binding.logout(); 100.0%
LogoutResult = binding.logout (string username, string password); 0.0%
LogoutResult = binding.logout (string username); 0.0%
LogoutResult = binding.logout (string password); 0.0%
What type of object can be added to your organization's information using the create() API call?
Account 0.0%
Contact 0.0%
Both a and b 100.0%
Which of the following Access Levels can be granted under Apex Managed Sharing?
Read Only 0.0%
Private 0.0%
Read/Write 0.0%
All of the above 100.0%
Which of the following action methods are supported by the VisualForce Standard Controllers?
save 25.0%
edit 25.0%
list 25.0%
delete 25.0%
Which of the following API calls are supported by the AssignmentRuleHeader soap?
create() 0.0%
merge() 0.0%
update() 0.0%
All of the above 100.0%
Which of the following are examples of Assignment operator expressions?
+= 100.0%
/= 0.0%
>>>= 0.0%
All of the above 0.0%
Which of the following are the Application Development Components of Salesforce?
Apex Code 50.0%
AppExchange 0.0%
ERP Connectors 0.0%
VisualForce 50.0%
Which of the following are the Declarative (File based) Metadata API Calls?
listMetadata() 0.0%
deploy() 100.0%
describeMetadata() 0.0%
All of the above 0.0%
Which of the following are the types of Collections in the Apex Code?
Lists 0.0%
Sets 0.0%
Maps 0.0%
All of the above 100.0%
Which of the following are true?
Force.com is a Platform as a service (PaaS) application. 25.0%
Salesforce is a Software as a Service (SaaS) application. 25.0%
Salesforce is a Platform as a service (PaaS) application. 25.0%
Force.com is a Software as a Service (SaaS) application. 25.0%
Which of the following components of a Custom Field in Managed Packages can be edited only by a developer?
Help Text 100.0%
Description 0.0%
Sharing Setting 0.0%
Mask Type 0.0%
Which of the following field properties is not supported for the PersonContactId field name of the Account object?
Create 0.0%
Filter 0.0%
Nillable 100.0%
None of the above 0.0%
Which of the following fields of the Case API object cannot be updated?
AccountId 0.0%
Description 0.0%
CaseNumber 100.0%
ParentId 0.0%
OwnerId 0.0%
Which of the following functionalities is provided by the Apex Code?
It can change the standard functionality. 100.0%
It can spawn threads. 0.0%
It can render error messages. 0.0%
It can create temporary files. 0.0%
Which of the following is not a Primitive Data Type of the Salesforce?
boolean 0.0%
byte 0.0%
currency 100.0%
datetime 0.0%
double 0.0%
Which of the following is/are required to convert a Lead into an Account and Contact?
You must be logged in. 0.0%
You must have the "Convert Leads" permission and the "Edit" permission on leads. 0.0%
You must have the "Create" and "Edit" permission on Accounts and Contact objects. 0.0%
All of the above 100.0%
Which of the following keywords are used with reference to Classes, Objects and Interfaces in the Apex Code?
final 0.0%
instanceof 0.0%
without sharing 0.0%
All of the above 100.0%
Which of the following Managed package Components contain a Subscriber and Developer Editable attribute?
Apex Class 0.0%
Apex Trigger 0.0%
Home Page Layout 100.0%
None of the above 0.0%
Which of the following methods can be used to handle sObjects dynamically in Apex?
Use of Token and Describe Result Data Structures 100.0%
Use of Dynamic DML 0.0%
Use of Dynamic SOQL and SOSL 0.0%
All of the above 0.0%
Which of the following methods does not constitute CRUD-based Metadata Development?
create() 0.0%
update() 0.0%
delete() 0.0%
deploy() 100.0%
Which of the following methods is not defined under ApexClass ?
deploy() 0.0%
retrieve() 0.0%
create() 0.0%
describeMetadata() 100.0%
Which of the following object types is supported by the merge() API call?
Lead 100.0%
Idea 0.0%
User 0.0%
Group 0.0%
Event 0.0%
Case 0.0%
Which of the following objects is associated with errors relating to create(), update(), and delete() method calls?
DeployMessage object 0.0%
AsyncResult object 100.0%
RetrieveMessage object 0.0%
Which of the following properties is not associated with Managed Packages?
Subscriber Deleteable 0.0%
IP Protection 0.0%
Automatic Renaming 0.0%
Upgradeable 100.0%
Which of the following situations demands the use of the Apex Code?
Building wizards and other multi-step processes. 100.0%
Adding functionality to a composite application that processes only one type of record at a time. 0.0%
Processing more than one record at a time efficiently, and with transactional correctness. 0.0%
Creating a custom flow control through an application. 0.0%
Which of the following statements regarding an Unmanaged Package are false?
An Unmanaged Package consists of Non-Upgradeable Components. 0.0%
An Unmanaged Package consists of Upgradeable Components. 100.0%
An Unmanaged Package can be used for one time distribution only. 0.0%
Which of the following types of CRM customization techniques are used in Force.com?
Apex Code 0.0%
Customize with Code 0.0%
Both a and b 100.0%
Which of the following Typographical Conventions is used to represent variables in Apex?
Bold 100.0%
Italics 0.0%
Bold Italics 0.0%
Regular Italics 0.0%
Which of the following User Permissions are needed to create test drives and publish AppExchange packages to AppExchange?
Download AppExchange Packages 0.0%
Create AppExchange Packages 100.0%
Upload AppExchange Packages 0.0%
Which of the following web services is used by Representational state transfer (REST) architecture to transmit domain-specific data?
SOAP 100.0%
WSDL 0.0%
MIME 0.0%
HTTP 0.0%
Which type of apps are built using only the Force.com API to access the Salesforce service?
Composite apps 0.0%
Client apps 0.0%
Native apps 0.0%
All of the above 100.0%
Which type of the CRM approach does Salesforce follow?
Operational CRM 0.0%
Sales Force Automation(SFA) CRM 100.0%
Analytical CRM 0.0%
Sales Intelligence CRM 0.0%
You have a static resource archive named Testpack in your VisualForce organization which contains an image file named hills.jpg. You want to reference this image file in your VisualForce page. Whic...
<apex:image url="{!$Resource.Testpack}" width="50" height="50" /> 0.0%
<apex:image url="{!URLFOR($Resource.Testpack , 'hills.jpg')}" width="50" height="50" /> 100.0%
<apex:image url="{!($Resource.Testpack , 'hills.jpg')}" width="50" height="50" /> 0.0%
<apex:image url="hills.jpg" width="50" height="50" /> 0.0%
You have to show the Firstname of the logged in user through a VisualForce page. Which of the following code snippets is correct for achieving the above result?
<apex:page> Hello [!$User.FirstName]! </apex:page> 0.0%
<apex:page> Hello {User.FirstName}! </apex:page> 0.0%
<apex:page> Hello ($User.FirstName)! </apex:page> 0.0%
<apex:page> Hello {!$User.FirstName}! </apex:page> 100.0%