PDI資格トレーリング & PDI最新問題PDI試験問題のAPPバージョンは、iPod、電話、コンピューターなど、ほぼすべての電子デバイスをサポートできます。自宅から遠く離れて旅行しているときは、電話でPDIテストトレントを使用できます。とても便利だと思います。また、自宅にいるときに、コンピューターでPDI学習教材を使用することもできます。オンライン版のPDI学習教材をダウンロードするだけで、電子デバイスに限定されず、いつでもどこでもすべての電子機器をサポートできます。 Salesforce Platform Developer I (PDI) 認定 PDI 試験問題 (Q160-Q165):質問 # 160
Universal Containers hires a developer to build a custom search page to help users find the Accounts they want. Users will be able to search on Name, Description, and a custom comments field.
Which consideration should the developer be aware of when deciding between SOQL and SOSL?
Choose 2 answers
A. SOSL is faster for text searches.
B. SOQL is able to return more records
C. SOSL is able to return more records.
D. SOQL Is faster for text searches.
正解:A、B
解説:
SOSL:
Designed for full-text searches, making it faster for unstructured or broad text searches across multiple objects.
Ideal for searching multiple fields simultaneously.
SOQL:
Optimized for structured queries where you need more control over filtering and relationships.
Can return up to 50,000 records in a single query, while SOSL returns only 2,000.
CandDare incorrect because SOSL is faster for text searches, not SOQL.
References:SOQL vs. SOSL:https://developer.salesforce.com ... sosl.meta/soql_sosl
/sforce_api_calls_soql_sosl_intro.htm
質問 # 161
A developer created these three Rollup Summary fields in the custom object, Project__c:
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?
A. Roll-up summary field
B. Formula field
C. Record-triggered flow
D. Apex trigger
正解:B
解説:
Using a formula field is the most efficient solution to calculate the ratio between rejected and approved timesheets. It minimizes maintenance overhead by dynamically calculating the value based on the existing roll-up summary fields.
* Example Formula:
Total_Rejected_Timesheets__c / Total_Approved_Timesheets__c
Reference:Formula Fields Overview
質問 # 162
Which three per-transaction limits have higher governor limits in asynchronous Apex transactions?
A. Maximum heap size
B. Maximum execution time
C. Maximum CPU time
D. Records returned by SOQL
E. Total SOQL queries
正解:C、D、E
質問 # 163
What features are available when writing apex test classes?(Choose 2 Answers)
A. The ability to write assertions to test after a @future method.
B. The ability to set and modify the CreatedDate field in apex tests.
C. The ability to set breakpoints to freeze the execution at a given point.
D. The ability to select error types to ignore in the developer console.
E. The ability to select testing data using csv files stored in the system.
正解:B、E
質問 # 164
What is true of a partial sandbox that is not true of a full sandbox? Choose 2 answers