Salesforce Salesforce Certified Platform Developer 시험
Salesforce Certified Platform Developer 온라인 연습
최종 업데이트 시간: 2025년08월19일
당신은 온라인 연습 문제를 통해 Salesforce Salesforce Certified Platform Developer 시험지식에 대해 자신이 어떻게 알고 있는지 파악한 후 시험 참가 신청 여부를 결정할 수 있다.
시험을 100% 합격하고 시험 준비 시간을 35% 절약하기를 바라며 Salesforce Certified Platform Developer 덤프 (최신 실제 시험 문제)를 사용 선택하여 현재 최신 237개의 시험 문제와 답을 포함하십시오.
/ 6
Question No : 1
An org tracks customer orders on an Order object and the items of an Order on the Line Item object. The Line Item object has a MasterDetail relationship to the order object. A developer has a requirement to calculate the order amount on an Order and the line amount on each Line item based on quantity and price.
What is the correct implementation?
정답:
Question No : 2
Which three Salesforce resources can be accessed from a Lightning web component? Choose 3 answers
정답:
Question No : 3
A developer created these three Rollup Summary fields in the custom object, Project_ct,
The developer is asked to create a new field that shows the ratio between rejected and approved timesheets for a given project.
Which should the developer use to Implement the business requirement in order to minimize maintenance overhead?
정답:
Question No : 4
A developer is tasked to perform a security review of the ContactSearch Apex class that exists in the system. Whithin the class, the developer identifies the following method as a security threat: List<Contact> performSearch(String lastName){ return Database.query('Select Id, FirstName, LastName FROM Contact WHERE LastName Like %'+lastName+'%); }
What are two ways the developer can update the method to prevent a SOQL injection attack? Choose 2 answers
정답:
Question No : 5
A developer must create a lightning component that allows users to input contact record information to create a contact record, including a salary__c custom field.
What should the developer use, along with a lightning-record-edit form, so that salary__c field functions as a currency input and is only viewable and editable by users that have the correct field levelpermissions on salary__C?
정답:
Question No : 6
An Opportunity needs to have an amount rolled up from a custom object that is not in a master-detail relationship.
How can this be achieved?
정답:
Question No : 7
A software company uses the following objects and relationships:
• Case: to handle customer support issues
• Defect_c: a custom object to represent known issues with the company's software
• case_Defect__c: a junction object between Case and Defector to represent that a defect Is a customer issue
What should be done to share a specific Case-Defect_c record with a user?
정답:
Question No : 8
What are two ways for a developer to execute tests in an org?
정답:
Question No : 9
A custom object Trainer_c has a lookup field to another custom object Gym___c.
Which SOQL query will get the record for the Viridian City gym and it's trainers?
정답:
Question No : 10
A primaryid_c custom field exists on the candidate_c custom object. The filed is used to store each candidate's id number and is marked as Unique in the schema definition.
As part of a data enrichment process. Universal Containers has a CSV file that contains updated data for all candidates in the system, the file contains each Candidate's primary id as a data point. Universal Containers wants to upload this information into Salesforce, while ensuring all data rows are correctly mapped to a candidate in the system.
Which technique should the developer implement to streamline the data upload?
정답:
Question No : 11
Which two statements are true about using the @testSetup annotation in an Apex test class? Choose 2 answers
정답:
Question No : 12
A business has a proprietary Order Management System (OMS) that creates orders from their website and fulfills the orders. When the order is created in the OMS, an integration also creates an order record in Salesforce and relates it to the contact as identified by the email on the order. As the order goes through different stages in the OMS, the integration also updates It in Salesforce. It is noticed that each update from the OMS creates a new order record in Salesforce.
Which two actions will prevent the duplicate order records from being created in Salesforce? Choose 2 answers
정답:
Question No : 13
A company has been adding data to Salesforce and has not done a good Job of limiting the creation of duplicate Lead records. The developer is considering writing an Apex process to identify duplicates and merge the records together.
Which two statements are valid considerations when using merged? Choose 2 answers
정답:
Question No : 14
Which Apex class contains methods to return the amount of resources that have been used for a particular governor, such as the number of DML statements?
정답:
Question No : 15
A developer observes that an Apex test method fails in the Sandbox. To identify the issue, the developer copies the code inside the test method and executes it via the Execute Anonymous tool in the Developer Console. The code then executes with no exceptions or errors.
Why did the test method fail in the sandbox and pass in the Developer Console?