Question 56

The operation manager at a construction company uses a custom object called Machinery to manage the usage and maintenance of its cranes and other machinery. The manager wants to be able to assign machinery to different constructions jobs, and track the dates and costs associated with each job. More than one piece of machinery can be assigned to one construction job.
What should a developer do to meet these requirements?
  • Question 57

    What is a good practice for a developer to follow when writing a trigger? (Choose 2)
  • Question 58

    Where can debug log filter settings be set?Choose 2 answers
  • Question 59

    A developer executes the following code in the Developer Console:
    List<Account> fList = new List <Account> ();For(integer i= 1; I <= 200; i++){fList.add(new Account ( Name = 'Universal Account ' + i));}Insert fList;List <Account> sList = new List<Account>();For (integer I = 201; I <=
    20000; i ++){sList.add(new Account (Name = 'Universal Account ' + i));}Insert sList;How many accounts are created in the Salesforce organization ?
  • Question 60

    Which code in a Visualforce page and/or controller might present a security vulnerability?