PDII 試験問題を無料オンラインアクセス
| 試験コード: | PDII |
| 試験名称: | Platform Developer II |
| 認定資格: | Salesforce |
| 無料問題数: | 163 |
| 更新日: | 2026-08-29 |
Refer to the markup below:
HTML
<template>
<lightning-record-form
record-id={recordId}
object-api-name="Account"
layout-type="Full">
</lightning-record-form>
</template>
A Lightning web component displays the Account name and two custom fields out of 275 that exist on the object. The custom fields are correctly declared and populated. However, the developer receives complain2223ts that the component performs slowly. What can the developer d2425o to improve the performance?
A developer has a Visualforce page that automatically assigns ownership of an Account to a queue upon save.
The page appears to correctly assign ownership, but an assertion validating the correct ownership fails. What can cause this problem?
Universal Containers wants to notify an external system, in the event that an unhandled exception occurs, by publishing a custom event using Apex. What is the appropriate publish/subscribe logic to meet this requirement?
A developer is building a Lightning web component that retrieves data from Salesforce and assigns it to the record property:
JavaScript
import { LightningElement, api, wire } from 'lwc';
import { getRecord } from 'lightning/uiRecordApi';
export default class Record extends LightningElement {
@api fields;
@api recordId;
record;
}
What must be done in the component to get the data from Salesforce?