PDII Exam Question 56

Refer to the component code and requirements below:
HTML
<lightning:layout multipleRows="true">
<lightning:layoutItem size="12">{!v.account.Name}</lightning:layoutItem>
<lightning:layoutItem size="12">{!v.account.AccountNumber}</lightning:layoutItem>
<lightning:layoutItem size="12">{!v.account.Industry}</lightning:layoutItem>
</lightning:layout>
Requirements:
* For mobile devices, the information should display in three rows.
* For desktops and tablets, the information should display in a single row.
Requirement 2 is not displaying as desired. Which option has the correct component code to meet the requirements for desktops an7d tablets?
  • PDII Exam Question 57

    A developer has a test class that creates test data before making a mock callout but now receives a "You have uncommitted work pending. Please commit or rollback before calling out" error. Which step should be taken to resolve the error?
  • PDII Exam Question 58

    The Account after-update trigger fires whenever an Account's address is updated, and it updates every associated Contact with that address. The Contact after-update trigger fires on every edit, and it updates every Campaign Member record related to the Contact with the Contact's state. Consider the following: A mass update of 200 Account records' addresses, where each Account has 50 Contacts. Each Contact has one Campaign Member. This means there are 10,000 Contact records across th23e Accounts and 10,000 Campaign Member records across the contacts. What will happen when the mass update occurs?24252627
  • PDII Exam Question 59

    Consider the following code snippet:
    HTML
    <c-selected-order>
    <template for:each={orders.data} for:item="order">
    <c-order orderId={order.Id}></c-order>
    </template>
    </c-selected-order>
    How should the <c-order> component communicate to the <c-selected-order> component that an order has been selected by the user?
  • PDII Exam Question 60

    Which three Visualforce components can be used to initiate Ajax behavior to perform partial page updates?