Question 106

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?
  • Question 107

    Which resource can be included in a Lightning Component bundle? Choose 2 answers
  • Question 108

    A visualforce page uses the contact standard controller. How can a developer display the name from the parent account record on the page?
  • Question 109

    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 110

    What are three ways for a developer to execute tests in an org? Choose 3.