DEX-450 Web TestEngine demo

Exit VCEDump DEX-450 Programmatic Development using Apex and Visualforce in Lightning
Question 54 of 69
0% complete
Q54 Single choice

A developer in a Salesforce org with 100 Accounts executes the following code using the Developer console:

Account myAccount = new Account(Name = 'MyAccount');Insert myAccount;For (Integer x = 0; x < 250; x+
+)

{Account newAccount = new Account (Name='MyAccount' + x);try {Insert newAccount;}catch (Exception
ex) {System.debug (ex) ;}}insert new Account (Name='myAccount');

How many accounts are in the org after this code is run?

Sign in to mark questions

Sign in to save marked questions and return to this demo.

Sign in