Question 26
A developer wants to create a custom object to track Customer Invoices.How should Invoices and Accounts be related to ensure that all Invoices are visible to everyone with access to an Account?
Question 27
A developer is debugging the following code to determine why Accounts are not being created.
Account a = new Account(Name = 'A');
Database.insert(a, false);
How should the code be altered to help debug the issue?
Account a = new Account(Name = 'A');
Database.insert(a, false);
How should the code be altered to help debug the issue?
Question 28
What is the result of the following Classes page?
Question 29
Which statement generates a list of Leads and Contacts that have a field with the phrase 'ACME'?
List <sObject> searchList = [FIND "*ACME*" IN ALL FIELDS RETURNING Contact,
List <sObject> searchList = [FIND "*ACME*" IN ALL FIELDS RETURNING Contact,
Question 30
Which two sosl searches will return records matching search criteria contained in any of the searchable text fields on an object? choose 2 answers
