A developer deployed a trigger to update the status__c of Assets related to an Account when the Account's status changes and a nightly integration that updates Accounts in bulk has started to fail with limit failures.What should the developer change about the code to address the failure while still having the code update all of the Assets correctly?
A. dd List assets = [SELECT Id, Status_c FROM Asset WHERE AccountId = :acctId) to line 14 and iterate over the assets list in the for loop on line 15
B. ove all of the logic to a gueueabs class that queries for and updates the Assets and call it from the trigger
C. dd a LIMIT clause to the SOQL query on line 16 to limit the number of Assets queried for an Account
D. hange the getAssecsTspdace method to process all Accounts in one call and call it outside of the ox loop that starts on line 03