어느 Salesforce Developer의 개발 성장기

[Salesforce Certified Platform Developer1] Dump 오답 일기5 본문

Salesforce Dump/Platform Developer1 Dump

[Salesforce Certified Platform Developer1] Dump 오답 일기5

Developer_Foryou 2020. 3. 8. 00:52

※ 각 자격증별 Dump는 시험을 준비하면서, 
웹상에 공개된 Dump와 유료 Dump를 풀면서 자주 틀렸던 문제를 위주로 작성하였습니다. 
오래된 문제도 간혹 있기 때문에 버전에 따라 답이 다른 경우도 있으며,
개인이 공부하면서 푼 문제이기 때문에 오답일 가능성도 있습니다.
이점 유의하여 공부하시길 바랍니다.

 

The Review__c object has a lookup relationship with the Job_Application__c object. The Job_Application__c object has a master-detail relationship with the Position__c object. The relationship field names are based on the auto-populated defaults. What is the recommended way to display field data from the related Review__c records on a Visualforce page for a single Position__c record?

A. Utilize the Standard Controller for Position__c and expression syntax in the Page to display related Review__c data through the Job_Application__c object
B. Utilize the Standard Controller for Position__c and cross-object Formula Fields on the Job_Application__c object to display Review__c data
C. Utilize the Standard Controller for Position__c and cross-object Formula Fields on the Review__c object to display Review__c data
D. Utilize the Standard Controller for Position__c and a Controller Extension to query for Review__c data

Answer D

A developer needs to provide a Visualforce page that lets users enter product-specific details during a sales cycle. How can this be accomplished? Select all that apply.

A. Download a Managed Package from the AppExchange that provides a custom Visualforce page to modify
B. Copy the standard page and then make a new Visualforce page for Product data entry
C. Download an Unmanaged Package from the AppExchange that provides a custom Visualforce page to modify
D. Create a new Visualforce page and an Apex controller to provide Product data entry

Answer C, D

A hierarchy custom setting stores specific URL for each profile in sf. Which statement can a developer use to retrieve the correct URL for the current URL for the Current User's profile and display this on a vf page?

A. {!$Setup.Url_Settings__c.URL__c}
B. {!$Setup.Url_Settings__c[$Profile.Id].URL__c}
C. {!$Setup.Url_Settings__c.Instance[Profile.Id].URL__c}
D. {!$Setup.Url_Settings__c[Profile.Id].URL__c}

What is a capability of formula fields? Choose 3

A. Determine if a datetime field has passed using the NOW function
B. Determine which of three different images to display using IF function
C. Display the previous value for a field using the PRIORVALUE funtion
D. Return and display a field value from another object using the VLOOKUP function
E. Generate a link using the HYPERLINK function to a specific record in a legacy system

Answer A, B, E

Where can a developer create a managed package?

A. Developer edition
B. Enterprise edition production org
C. Enterprise edition Sandbox org
D. Professional edition

Answer A

Which of these statements is true for encrypted custom fields? Select all that apply.

Encrypted field: 암호화된 필드
A. Encrypted fields can be included in Search results.
B. Encrypted fields can be included in report results.
C. Encrypted fields are not available in filters for list views, reports, and Roll-up summary fields.
D. Encrypted fields are not available for validation rules or Apex scripts.

Answer A, B, C

A developer created trigger with following code ,

list<Account> lstAccounts = new list<Account>();
for(order__c objorder:trigger.new){
     account a = [select id from Account where id=:objorder.Account__c];
     lstAccounts .add(a);
}
update lstAccounts;

How many order will be load when developer attempts to load 150 records.

A. 0
B. 150
C. 100
D. 1

Answer A

What is the name of the standard relationship from Account down to Contact?

A. Contacts
B. Contact
C. Accounts
D. Account

Answer A

Universal containers has included its orders as an external data object into Salesforce. You want to create a relationship between Accounts and the Orders object (one-to-many relationship) leveraging a key field for account which is on both external object and Account. Which relationship do you create:

A. Indirect Lookup Relationship
B. External Lookup Relationship
C. Hierarchical Relationship
D. Lookup Relationship
E. Master-Detail Relationship

Answer A

A custom object has an organization-wide default setting of "Private" with Grant Access Using Hierarchies turned off. Which users can select the Sharing button on records for that object?

A. Only the record owner and a user with the System Administrator profile
B. The record owner, a user with the System Administrator profile, and a user shared to the record
C. The record owner, a user shared to the record, any user above the record owner in the role hierarchy, and a user with the System Administrator profile
D. The record owner, a user above the record owner in the role hierarchy, and a user with the System

Answer B (이런 유형의 문제는 안나오는 거 같은데..)

Comments