Salesforce Test
A Custom Component named "myCustomComponent" is created and has the following code: <apex:component> <b> <apex:outputText value="This is a custom component."/> ...
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?
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...
In order to modify existing customizations in an organization using XML metadata files, which of the following method calls will be used?
In which type of relationships among objects is the object not deleted when its related product is deleted?
In which type of Salesforce Edition can a Managed package be created?
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...
The following is a VisualForce code snippet: <apex:page standardController="Account"> <apex:pageBlock title="Contacts"> <apex:pageBlockTable value="{!account.Contacts}" var="contact"> ...
The following is a VisualForce code snippet: <apex:page standardController="Account" recordSetVar="accounts">
The length of Calculate Field Type in Salesforce API is 3900 characters. What will happen if the length exceeds 3900 characters?
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?
What does the WSDL describeGlobal() call return?
What is meant by Cloud Computing?
What is the data type of the accountId argument in a convertLead() API call?
What is the data type of the size property of the QueryResult object returned by a query() call?
What is the description of the Lead object?
What is the difference between the queryAll() and queryMore() calls?
What is the field type of the AccountNumber field name of the Account object?
What is the field type of the NewValue field name of the ContractHistory object?
What is the functionality of a resetPassword() utility API call?
What is the maximum number of characters in the OldValue field of SolutionHistory object?
What is the maximum number of Custom Apps that can be created using the Developer Edition?
What is the syntax for the logout() API call?
What type of object can be added to your organization's information using the create() API call?
Which of the following Access Levels can be granted under Apex Managed Sharing?
Which of the following action methods are supported by the VisualForce Standard Controllers?
Which of the following API calls are supported by the AssignmentRuleHeader soap?
Which of the following are examples of Assignment operator expressions?
Which of the following are the Application Development Components of Salesforce?
Which of the following are the Declarative (File based) Metadata API Calls?
Which of the following are the types of Collections in the Apex Code?
Which of the following are true?
Which of the following components of a Custom Field in Managed Packages can be edited only by a developer?
Which of the following field properties is not supported for the PersonContactId field name of the Account object?
Which of the following fields of the Case API object cannot be updated?
Which of the following functionalities is provided by the Apex Code?
Which of the following is not a Primitive Data Type of the Salesforce?
Which of the following is/are required to convert a Lead into an Account and Contact?
Which of the following keywords are used with reference to Classes, Objects and Interfaces in the Apex Code?
Which of the following Managed package Components contain a Subscriber and Developer Editable attribute?
Which of the following methods can be used to handle sObjects dynamically in Apex?
Which of the following methods does not constitute CRUD-based Metadata Development?
Which of the following methods is not defined under ApexClass ?
Which of the following object types is supported by the merge() API call?
Which of the following objects is associated with errors relating to create(), update(), and delete() method calls?
Which of the following properties is not associated with Managed Packages?
Which of the following situations demands the use of the Apex Code?
Which of the following statements regarding an Unmanaged Package are false?
Which of the following types of CRM customization techniques are used in Force.com?
Which of the following Typographical Conventions is used to represent variables in Apex?
Which of the following User Permissions are needed to create test drives and publish AppExchange packages to AppExchange?
Which of the following web services is used by Representational state transfer (REST) architecture to transmit domain-specific data?
Which type of apps are built using only the Force.com API to access the Salesforce service?
Which type of the CRM approach does Salesforce follow?
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...
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?