Question 66

Which tool allows a developer to send requests to the Salesforce REST APIs and view the responses?
  • Question 67

    An org has an existing Visual Flow that creates an Opportunity with an Update records element. A developer must update the Visual Flow also created a Contact and store the created Contact's ID on the Opportunity.
  • Question 68

    What is the value of x after the code segment executes?String x = 'A';Integer i = 10;if ( i < 15 ) {i = 15;x
    'B';} else if ( i < 20 ) {x = 'C';} else {x = 'D'; }
  • Question 69

    A developer needs to have records with specific field values in order to test a new Apex class.
    What should the developer do to ensure the data is available to the test?
  • Question 70

    A developer is creating an application to track engines and their parts. An individual part can be used in different types of engines.What data model should be used to track the data and to prevent orphan records?