CRT-450 Exam Question 111

A developer needs to confirm that an Account trigger is working correctly without changing the organization's data.What would the developer do to test the Account trigger?
  • CRT-450 Exam Question 112

    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 <
    150; 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?
  • CRT-450 Exam Question 113

    Why would a developer use Test. startTest( ) and Test.stopTest( )?
  • CRT-450 Exam Question 114

    A developer tasked with creating a schema to track Movies, Actors, and contracts. A single movie can have many contracts and a single actor can have many contracts. Each contract is owned and actively managed by a single user. Which schema should be created to enable user to easily manage the contract they own; without requiring access to the movie or the actor records?
  • CRT-450 Exam Question 115

    What are two uses for External IDs? (Choose two.)