PDII 무료 덤프문제 온라인 액세스
| 시험코드: | PDII |
| 시험이름: | Platform Developer II |
| 인증사: | Salesforce |
| 무료 덤프 문항수: | 163 |
| 업로드 날짜: | 2026-06-15 |
A developer is tasked with creating a Lightning web component that is responsive on various devices. Which two components should help accomplish this goal?
To avoid duplicating code and improve maintainability, how should Universal Containers implement an API integration for code reuse?
Consider the following code snippet:78
Java
trigger OpportunityTrigger on Opportunity (before insert, before update) { for(Opportunity opp : Trigger.new){ OpportunityHandler.setPricingStructure(Opp);
}
}
public class OpportunityHandler{
public static void setPricingStructure(Opportunity thisOpp){
Pricing_Structure_c ps = [Select Type_c FROM Pricing_Structure_c WHERE industry_c = :thisOpp.
Account_Industry_c];
thisOpp.Pricing_Structure_c = ps.Type_c;
update thisOpp;
}
}
Which two best practices should the developer implement to optimize this code?
A company accepts orders for customers in their ERP system that must be integrated into Salesforce as Order__c records with a lookup field to Account. The Account object has an external ID field, ERP_Customer_ID__c. What should the integration use to create new Order__c records that will automatically be related to the correct Account?1234