Home Uncategorized Salesforce Certification Sample Question and Answers Part 9

Salesforce Certification Sample Question and Answers Part 9

#41 Which of the following methods does not constitute CRUD-based Metadata Development?
a.create()
b.update()
c.delete()
 d.deploy()

Answer:
d.deploy()
http://www.salesforce.com/us/developer/docs/api_meta/Content/meta_calls_intro.htm

#42 What is the maximum number of characters in the OldValue field of SolutionHistory object?
a.100
 b.255
c.755
d.1000
e.There is no limit.
Answer:
b.255
http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_objects_solutionhistory.htm

#45 What is the difference between the queryAll() and queryMore() calls?
a.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.
b.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.
c.queryAll() returns the records when the Ids are not known while queryMore() returns the records with known Ids.
d.queryMore() returns the records when the Ids are not known while queryAll() returns the records with known Ids.
Answer:
d.queryMore() returns the records when the Ids are not known while queryAll() returns the records with known Ids.
http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_calls_querymore.htm

#46 Which of the following properties is not associated with Managed Packages?
a.Subscriber Deleteable
b.IP Protection
c.Automatic Renaming
 d.Upgradeable

Answer:
d.Upgradeable

http://login.salesforce.com/help/doc/en/sharing_apps.htm

#48 Which of the following situations demands the use of the Apex Code?
 a.Building wizards and other multi-step processes.
b.Adding functionality to a composite application that processes only one type of record at a time.
c.Processing more than one record at a time efficiently, and with transactional correctness.
d.Creating a custom flow control through an application.

Answer:
a.Building wizards and other multi-step processes.

#49 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 successfully?
a.null, true, null
 b.id generated, false, error code
c.id generated, true, null
d.null, false, error code

Answer:
b.id generated, false, error code
http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_calls_create_saveresult.htm

#50 Which of the following object types is supported by the merge() API call?
 a.Lead
b.Idea
c.User
d.Group
e.Event
f.Case

Answer:
a.Lead

Merge up to three records into one.
The only supported object types are Lead, Contact and Account.
http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_calls_merge.htm

You may also like

Leave a Comment