What is a potential design issue with the following code? trigger accountTrigger on Account (before update){ Boolean processOpportunity = false; ListopptysClosedLost = new List () List IstAllOpp = [select StageName from Opportunity where accountId IN :Trigger.newMap.keySet()]; if(!IstAllOpp.isEmpty()) processOpportunity = true; while(processOpportunity) { for(opportunity o : IstAllOpp) if(o.StageName == 'Closed - Lost') opptysClosedLost.add(o); processOpportunity = false; if(!opptysClosedLost.isEmpty()) delete opptysClosedLost; A. SOQL could be avoided by creating a formula field for StageName in Account from the related Opportunity B. The code will result in a System.LimitException : Too many script statements error C. The code will result in a System.DmlException:Entity_is_Deleted error D. The code will result in a System.LimitException: Apex CPU time limit exceeded error  Suggested Answer: D Community Answer: B This question is in Certified Platform Developer II Exam For getting Salesforce Certified Platform Developer II Disclaimers: The website is not related to, affiliated with, endorsed or authorized by Salesforce. Trademarks, certification & product names are used for reference only and belong to Salesforce. The website does not contain actual questions and answers from Salesforce's Certification Exams.
Please login or Register to submit your answer