Tuesday, December 15, 2015

Salesforce (Development) test answers of 2016.

In this post you can find Complete and recently updated Correct Question and answers of Salesforce (Development). All Answers updated regularly with new questions. Upwork Salesforce (Development) test answers of 2016.



Question:* Chatter Feed Objects of Data Model includes objects related to feeds. All feed items have:

Answer: • ParentId

Question:* The phone field returns what?

Answer: • Phone numbers.

Question:* What is an example of something you can get your Web service client applications to do in the development environment?

Answer: • Query your organization’s information.

Question:* Will the API calls, retrieve() and delete(), accept an array of IDs?

Answer: • Yes.

Question:* When your session expires, the exception code (...) is returned.

Answer: • INVALID_SESSION_ID

Question:* How is the field, “ID” defined?

Answer: • A globally unique field that identifies a record.

Question:* According to roles in the sharing hierarchy, who can view and edit the record?

Answer: • Only the record owner and users beyond the specified role.

Question:* What values do boolean fields contain?

Answer: • True, or false.

Question:* What is one security protocol that salesforce.com supports?

Answer: • (SSL) protocol SSLv3.

Question:* IsDeleted is what type of field?

Answer: • Boolean.

Question:* What is a token?

Answer: • An automatically generated key by salesforce.com.

Question:* What is a calculated field?

Answer: • A field defined by a formula.

Question:* What must happen before a user can access the API?

Answer: • They must be granted “API Enabled” permissions.

Question:* What is a sObject?

Answer: • An object, such as an Account or Campaign.

Question:* The user permission, “Read” indicates what?

Answer: • Users can only view objects of this type.

Question:* Sales Objects belong to Data Model and include:

Answer: • accounts, contacts, opportunities, leads, campaigns, and other related objects.

Question:* What is used to represent integer fields?

Answer: • int

Question:* Can custom objects have a have many-to-many relationship with other custom objects?

Answer: • Yes.

Question:* Where must client applications format email addresses?

Answer: • In create() and update() calls.

Question:* What will be the name of Custom Object in the Salesforce UI WSDL, if Custom Object is labeled like 'common' ?

Answer: • Common__c

Question:* Can CreatedDate be larger than LastModifiedDate?

Answer: • No.

Question:* What has happened during the fault, “UNKNOWN_EXCEPTION”?

Answer: • The system has encountered an internal error.

Question:* Currency and percent fields are what type of value?

Answer: • Double

Question:* What do API calls represent?

Answer: • Specific operations that your client applications can invoke at runtime.

Question:* . How can you create Many to Many relationship in salesforce.com?

Answer: • Use a junction Object

Question:* What does the picklist field return?

Answer: • A set of enumerated values from which one can be selected.

Question:* What is the right syntax for the associated name field of Custom Objects in WSDL?

Answer: • Custom objects must have unique names within your organization. The first letter is capitalized. Suffix "__c" is added.

Question:* Which of the following is an example of an audit field?

Answer: • CreatedById

Question:* SystemModstamp returns what data?

Answer: • Date and time when this record was last modified.

Question:* When should you use Bulk API?

Answer: • When you are loading a large number of records.

Question:* What types of error handling are there?

Answer: • API-returned SOAP fault messages and general API errors.

Question:* Select the Incorrect Primitive Data Type.

Answer: • base32

Question:* What does the element, ApiQueryFault return?

Answer: • The row and column numbers where the problem occurred.

Question:* What is the syntax for password and token access?

Answer: • mypasswordTOKEN

Question:* What are the Corresponding Field Types in the UI for the double API Data Type?

Answer: • Currency, formula, number, percent, and roll-up summary

Question:* Which audit field cannot be changed?

Answer: • systemModstamp

Question:* When is a custom object's associated name field defined?

Answer: • During setup.

Question:* What is an example of an operation your application client can execute at runtime?

Answer: • Obtain metadata about your data.

Question:* Select the wrong endpoint:

Answer: • https://test.salesforce.com/services/Soap/u/29.0/12.1.0

Question:* What is the name of a single, generic object, defined in partner WSDL, that represents all of the objects?

Answer: • sObject

Question:* Double values have what restrictions?

Answer: • Scale and precision.

Question:* What is base-64 encoding used for?

Answer: • Storing binary files in Attachment, Document, and Scontrol records.

Question:* Which objects written to a Salesforce object are committed automatically?

Answer: • All objects.

Question:* What do master-detail relationships involve?

Answer: • Cascading deletes and sharing rules that are controlled by the parent.

Question:* By Calling sendEmail() it is possible to send:

Answer: • List of single and mass emails.

Question:* Account and Opportunity standard objects have common methods, supported API calls. Which methods are common for both of them?

Answer: • create(), delete(), describeLayout(), describeSObjects(), getDeleted(), getUpdated(),query(),retrieve(), search(), undelete(), update(), upsert()

Question:* If your ID was 12 characters, what error would you get?

Answer: • MALFORMED_ID

Question:* When sharing, what happens to data that is outside of the logged-in user’s sharing model?

Answer: • It is not returned.

Question:* Select API Fault Element which is present in Data Type list.

Answer: • InvalidSObjectFault

Question:* Does Salesforce check for IP restrictions when granting access to the API?

Answer: • Yes.

Question:* Process Object belong to Data Model and include:

Answer: • approval processes and related objects.

Question:* What code do you see when your session expires?

Answer: • INVALID_SESSION_ID

Question:* What is created when an object does not have a master-detail relationship to another object?

Answer: • A sharing rule.

Question:* Salesforce API calls are:

Answer: • Service Requests and Responses, Synchronous, Committed Automatically Versus Rollback on Error

Question:* What is a characteristic of all API calls?

Answer: • They are synchronous.

Question:* Which call is similar to the AUTOCOMMMIT setting in SQL?

Answer: • Committed Automatically Versus Rollback on Error

Question:* The SOAP endpoint for an API verion 29.0 contains a URL with a format:

Answer: • serverName/services/Soap/c/29.0/ID

Question:* Where do you configure your session expiration time?

Answer: • Security Controls

Question:* Lets assume you are calling describeGlobal() web-method to obtain a list of available objects for your organization’s data. What will you get in the case of successful call?

Answer: • DescribeGlobalResult object, which allows to retrieve an array of DescribeGlobalSObjectResult objects by calling sobjects.

Question:* Where are exception codes defined?

Answer: • In the WSDL file.

Question:* ID fields in the Salesforce UI contain:

Answer: • 15-character, base-62, case-sensitive strings.

Question:* Any method which belongs to Describe Calls:

Answer: • Starts from the "describe" prefix.

Question:* What would return a MALFORMED_QUERY fault?

Answer: • A query string larger than 20,000 characters.

Question:* CRM ISV Organization in ISVforce is also know as:

Answer: • business org

Question:* A user is able to login to the Salesforce via:

Answer: • UI, API, desktop client such as Connect for Outlook, Salesforce for Outlook, Connect Offline, Connect for Office, Connect for Lotus Notes, or the Data Loader

Question:* Which of the given API Fault elements defines an error in a queryString passed in a query() call?

Answer: • MalformedQueryFault

Question:* Which of the following is a property of sObject?

Answer: • fieldsToNull

Question:* Salesforce.com supports:

Answer: • SSLv3, TLS, frontdoor.jsp. Ciphers must have a key length of at least 128 bits.

Question:* Currently there are two UI themes, “Salesforce” and “Salesforce Classic.” How could you figure out which theme is enabled?

Answer: • By calling getUserInfo(), looking at userUiSkin property of returned object.

Question:* Select which is NOT true about Custom Objects:

Answer: • Custom objects can not have the same audit fields as standard objects.

Question:* Setting CurrencyIsoCode to a value that is not defined for an organization leads to:

Answer: • Operation to be rejected. CurrencyIsoCode keeps its value.

Question:* What does the error code CANNOT_DISABLE_LAST_ADMIN mean?

Answer: • There is not an active administrative user.

Question:* How do you calculate the maximum number of digits to the left of the decimal place?

Answer: • Precision minus scale.

Question:* Which link to the AppExchange Partner Program page, among given, is wrong?

Answer: • appexchange.salesforce.com/partners

Question:* For security reasons, Salesforce restricts outbound ports. Which port may you use for HTTPS connections?

Answer: • 443 and any of the available in range from 1024 to 65535

Question:* By successfully calling queryMore() you will receive QueryResult object, which contains queryLocator field. In which subsequent call can you use this value?

Answer: • queryMore()

Question:* Salesforce API provides two methods for data replication, each of them allows you to retrieve a list of objects that:

Answer: • Have been updated or deleted during specified timespan for the specified object.

Question:* What should you know to perform a login operation?

Answer: • connection, username, password

Question:* Select the SOAP header that does not exist in API 29.0 and earlier versions up to 14.0 and might not be seen in WSDL

Answer: • LimitInfoHeader—Pilot

Question:* If an organization has multicurrency enabled, the CurrencyIsoCode field contains:

Answer: • The string representation of the currency ISO code.

Question:* An Error object contains statusCodes, message, fields properties. What property (or properties) has information about fields in the object affected by the error condition?

Answer: • fields

Question:* What does the combobox field return?

Answer: • Data that is not already specified in the field list.

Question:* Are all exception codes listed in the WSDL?

Answer: • No. They can be specified.

Question:* Any method which belongs to Utility Calls:

Answer: • None of the given answers are right.

Question:* Callling getServerTimestamp() might return:

Answer: • UnexpectedErrorFault Fault Element

Question:* Lookup (1:n) type of relationships links:

Answer: • A couple of objects together, has no effect on deletion or security

Question:* At the highest level of abstraction it is possible to imagine a develepor calling API web-method describeDataCategoryGroups() developer to perform what sort of task?

Answer: • Running utilities to perform administration tasks.

Question:* If you are using the partner WSDL, a query that includes ID will return the ID field twice after calling query(queryStr) method. What will be the value of ID in response if queryStr does not have Id?

Answer: • a single null ID

Question:* A PackageVersion as a part of an endpoint for making API Calls has format:

Answer: • majorNumber.minorNumber.patchNumber



No comments:

HTML5 Upwork (oDesk) TEST ANSWERS 2022

HTML5 Upwork (oDesk) TEST ANSWERS 2022 Question: Which of the following is the best method to detect HTML5 Canvas support in web br...

Disqus for upwork test answers