Salesforce401题库.doc

上传人:大张伟 文档编号:5672272 上传时间:2020-07-21 格式:DOC 页数:52 大小:241.50KB
返回 下载 相关 举报
Salesforce401题库.doc_第1页
第1页 / 共52页
Salesforce401题库.doc_第2页
第2页 / 共52页
Salesforce401题库.doc_第3页
第3页 / 共52页
Salesforce401题库.doc_第4页
第4页 / 共52页
Salesforce401题库.doc_第5页
第5页 / 共52页
点击查看更多>>
资源描述

《Salesforce401题库.doc》由会员分享,可在线阅读,更多相关《Salesforce401题库.doc(52页珍藏版)》请在三一文库上搜索。

1、题库一1. Which property of a field can be edited on a page layout? A.Required B.Controller C. Field Dependency D. Read only 2. Which options exist for calculations or analyses on reports? Choose 3 answers: A.Perform calculations on summary data. B. Set parameters to highlight outliners. C. Maintain cal

2、culations from previous runs of the report. D. Plot multiple sets of data on one chart. 3. In a custom recruiting application, custom objects are used to track Positions and Job Posting sites (e.g: M, HotJ). Each position is typically posted to many job posting sites. Which additional object is requ

3、ired to relate Position and Job Posting sites so that a user can report on the number of Positions associated with a given Job Posting site? A. Standard object B. Lookup object C. Parent Object D. Junction Object 4.Which scenario requires Apex to automate the real-time business logic? A. When a user

4、 creates a new Time Off request record (a custom object) and clicks Submit for Approval, the Time off Request routes to the users manager for approval. B. As a user saves a a new order (a custom object) , the quantity and products on the order arechecked against a existing warehouse stock (a custom

5、object), then the warehouse that theproduct will ship from on the order record is populated. C. When a user saves a New Hire record (a custom object), an outbound message is automatically sent with the new hires contact information to an external HR system. D. When a user enters a State and Zip code

6、 into a custom fields on a Candidate custom object, it must be checked against a Zip Code custom Object to ensure that the Zip code entered does exist in the state entered.5.Which statement is TRUE about Encrypted Custom Fields? Choose 3 answers A. Encrypted fields are not available for validation r

7、ules or Apex scripts. B. Ecrypted fields can be included in search results. C. Encrypted fields can be included in report results. D. Encrypted fields are not available in filters for list views, reports, and roll up summary fields. 6. In a recruiting application, a Position custom object is related

8、 to a Salary custom object. Sensitive information, such as current salary, is stored on the Salary Object. All users should be able to view position information. However, only select individuals should be able to read salary records. How should a developer accomplish this? A. Create a lookup relatio

9、nship between Position and Salary, set organization wide defaults to Private for Position and Salary. B. Create a lookup relationship between Position and Salary, set organization wide defaults to Public Read only for Position and Private for Salary. C. Create a master-detail relationship between Po

10、sition and Salary; set organization wide defaults to Private fro Position and Salary. D. Create a master-detail relationship between Position and Salary; set organization wide defaults to Public Ready Only for Position and Private for Salary.7. A developer wants to report on trends in the data. Whic

11、h feature of the F platform would a developer use to accomplish this? A. Summary Report B. Field History C. Analytic Snapshot D. Matrix Report 8. How can a developer configure an approval process to prevent a record from being edited by the submitter? A. Set an action to lock record upon submission

12、B. Create a workflow field update to make the page layout ready only C. Develop a sharing rule that is set to read only D. Records are locked by default on submission, no action required9. What formula returns the number of days since the record was created? A. CreatedDate - TODAY() B. TODAY() - DAT

13、EVALUE(CreatedDate) C. TODAY() - (CreatedDate) D. NOW() - DATEVALUE(CreateDate)10. What is supported by the F Data Loader? A. perform insert and update operations across a set of records B. perform a rollback of a transaction C. insert records for two different objects in a single call D. load more

14、than 50,000 records at a time E. import data for custom objects 11.Which API can be used to create the Data model? A. F Metadata API B. F Sign-on API C. F API D. AJAX toolkit for F12.When performing or updating with Data Loader, the comma dilimited file must contain a column with what values? A. Log

15、ical names of records B. Profile names of record owners C. Created time and date of records D. F Record IDs and Value of Record 13.3 Tier Model (UI, Business Logic, Data) which associated with data layer A. Objects B. Validation Rules C. Fields D. Relationships E. Workflow Rules 14.A developer has r

16、eceived confirmation that has enabled insertable system audit fields foran organization. Which ability is now enabled when using the data loader? A. Ability to insert account records setting the isDeleted field of each record B. Ability to insert account records setting the SystemModStamp field for

17、 each record C. Ability to insert account records setting the $MarkSync field of each record D. Ability to insert account records setting the CreatedDate field of each record 15.What is a capability of joined reports? A. Add the joined report to a dashboardB. Add conditional highlighting to the data

18、.C. Export the data to a spreadsheet.D. Schedule and email the report.16.Which statement is true about a custom tab? A. It can be included in as many applications as desired. B. It can only be included in one application.C. It can only be included in standard applications.D. It can only be included

19、in custom applications.17. Which relationship type should be used to capture a users manager on each user record in the application? A. Master-detail B. Hierarchical C. Parent-child D. Many-to-many18. A developer wants to build an application on platform. The data model that the users need access t

20、o applications, and the application business logic have been considered. The report and dashboard requirements have not been considered, which is true? A. Dashboard may not be visible to management users B. Developer will not be able to load data C. Data model may not support the required reports D.

21、 Data model may not be support the business logic 19. When would a developer use upsert and external IDs? A. To integrate with an external system B. To load related records without knowing Salesforce record IDs C. To migrate customizations from sandbox to production D. To use the FAPI to query for d

22、ata 20. Which is a required step for creating a many-to-many relationship? A. create two relationships B. create a many-to-many relationship between two objects C. create a custom object to join two objects D. create the related list on the page layout of the junction object 21.Which statement is tr

23、ue regarding domain name? A. It is usually the name of your company B. It cannot be changed once it is registered to your organization C. It cannot be mapped to your companys domain D. It must be unique 题库二1) After creating workflow Rule with a time-based action that send an email reminder to users

24、 14 days after a record has been created.A developer would like to test to make sure that the rule is working the way in which it was intended.How can the developer verify that the workflow rule is working? A. select the developers username in the Debug Log setup.create a new record , then check the

25、Debug Log to evidence that the Workflow executed. B. create a new record then check the time-based workflow queue C. select the developers username in the time-based worflow queue setup, create a new record then check the queue for evidence that the workflow executed. D. create a new record then che

26、ck the outbound message queue2) An organization wants to leverage the import wizards to import different types of data. What type of data cannot be imported through the wizard? a) Users b) Leads c) Accounts and Contacts d) Custom Objects3) How many master-detail relationships can be created on one o

27、bject? A. 1 B. 2 C. 3 D. 4 4) In a custom defect tracking application, a custom object called bug is used to track defects.The bugs often have relationships to other bugs in a parent-child fashion.Which relationship should a developer choose to model the inter dependency between bugs? A. many-to-man

28、y B. master-detail C. self D. Hierarchical 5) A developer wants to build an application on the F platform. The data model, the business logic and report and dashboard requirementshave been considered. The user access requirements have not been considered. What is the implication of building the appl

29、ication given the availableinformation? A. the data model may not support the required security controls. B. The developer cannot establish security controls if not completed upon initial setup C. The security controls may not support the approval process requirements T D. The developer will not be

30、able to build any reports or dashboards if the security controls have not been established 6) What occurs in an upsert operation if the external ID is referenced in more than one record? A. only the first matching record will be updated B. the upsert operation fails. C. an error is reported D. dupli

31、cate records will be created with matching external Ids7) When do users have the option to manually share records from a detail page? A. When the organization wide default for the object is set to Private or Read-Only B. When a developer grants the user s the Share Records permission C. When a devel

32、oper adds the Sharing button to the page layout D. When the organization wide defaults for the object is set to Public/Write 8) Within a custom recruiting application, Universal Containers uses a custom position object to track positions. Positions expire 90 days afterthey have been approved. A Work

33、flow Rule is in place to send an email to the hiring manager listed on a position 15 days before the expiration date.What will happen if the expiration date of a position is extended by 30 days? A. An email will not be sent. B. An email will be sent 15 days before the original expiration date. C. An

34、 email will be sent on the original expiration date. D. An email will be sent 15 days before the updated expiration date. 9) What can a cross-object formula reference? A. Child Only B. Parent Only C. Both parent-child objects D. Records of Same object 10) A developer needs to perform an automated ex

35、tract of data from SFDC migration at 2:00 AM. How would this be done? A. Use the schedule manager of import wizard B. Use the command line interface of a data loader C. Use the export scheduler of the Data Loader GUI D. Use the data export service to perform nightly extract11.) What must a developer

36、 consider when inserting an API based tool ? A. APEX Triggers are ignored B. Validation Rules are Respected C. Universally required field settings are respected D. Required fields on page layouts are enforced12) Which portion of the Model-View-Controller is represented in F as a Standard or Custom O

37、bject? A. Controller B. View C. Model 13) Which feature is available for custom objects? A. Sharing B. Queues C. Field History Tracking D. Assignment Rules 14) Job Applications is a custom object with a lookup relationship to the custom object Positions. A developer would like to modify the Position

38、 fields displayed in the console mini view when a job applicationrecord is viewed in the console detail view. What would a developer customize to accomplish this? A. The mini page layout on the Job application page layout B. The related objects on the job application page layout C. The mini page lay

39、out of the position page layout D. The related objects on the position page layouts 15) In a recruiting application, all users should be able to see and edit all candidate records,but interviewers should not be able to modify the address of a candidate and should NOT be able to see the birthdate of

40、a candidate. How would a developer meet this requirement? A. Set the organization wide defaults for candidates to Edit some fields B. Set the organization wide default for candidate to Read-Only C. Use field-level security to control access to the address and birth date fields D. Remove the Edit per

41、mission on the candidate from the interviewers profile 16) A developer needs to support multiple currencies for a custom object in an application? Multi-currencyhas been enabled, what does the developer need to know to support the application? A. rack Currency changes automatically. B. Admin can add

42、 additional currencies once set up C. Must input currency ISO Field D. Roll up summary fields will calculate incorrectly if children have multiple currenciesT 17) Universal Containers uses a recruiting application with custom objects to track positions and related interviewers.When a hiring manager

43、creates a new position record, interviewer records for each individual on the interviewteam also need to beCurrently, this process requires a user to create the position, save it, scroll to the interviewer related list,then create a multiple interviewer records. How would a developer streamline this

44、 process? A. Create a new page layout for positions and assign it to a new record type B. Use a formula field to create a wizard that guides a user through the process. C. Create a visualforce page that allows position and interviewer data to be input on a single page D. Create a new validation rule

45、 to trigger a pop-up window for a user to input interviewer data 18) When creating a workflow rule, which action requires a formula as a rule criteria? A. Check if the status is new B. Checking if the field was modified today C. Check if the users profile is Sys Admin D. Check for value in a field that has changed 19) Universal Containers tracks Candidates as a custom object in a recruiting application. On a candidate record,the city en

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 科普知识


经营许可证编号:宁ICP备18001539号-1