Question: 1
If you have a method 'doStuff(List<sObject> records)', which is a valid call?
Question: 2
A developer has written the following method:
static void processList(List<sobject> input){
Which code block can be used to call the method?
Question: 3
A developer has been asked to create code that will meet the following requirements:
Receives input of: Map<ld, Project_c), List<Account>
Performs a potentially long-running callout to an outside web service
Provides a way to confirm that the process executed successfully
Which asynchronous feature should be used?
Question: 4
Line 1 public class AttributeTypes Line 2 { Line 3 private final String[] arrayItems; Line 4 Line 5 @AuraEnabled Line 6 public List<String> getStringArray() { Line 7 Strings+ arrayItems = new String*+, 'red', 'green', 'blue' -; Line 8 return arrayItems; Line 9 } Line 10 } Consider the Apex controller above that is called from a Lightning Aura Component. What is wrong with it?
Question: 5
<lightning: layout multipleRows='true'> <lightning: layoutItem size='12'>{!v.account.Name} </flighting: layoutitem> <lightning:layoutitem 3ize='12'>{!v. account .AccountNumber} </lighting: layoutitem> <lightning: layoutitem size='12'>{!v.account. Industry} </lighting: layoutitem> </lightning: layout> Refer to the component code above. The information displays as expected (in three rows) on a mobile device. However, the information is not displaying as desired (in a single row) on a desktop or tablet. Which option has the correct component changes to display correctly on desktops and tablets?
A.
B.
C.
D.