Question: 1
What is the minimum log level needed to see user-generated debug statements?
Question: 2
A developer has the following code:try {List nameList;Account a;String s = a.Name;nameList.add(s);} catch (ListException le ) {System.debug(' List Exception ');} catch (NullPointerException npe) {System.debug('
NullPointer Exception ');} catch (Exception e) {System.debug(' Generic Exception ');} What message will be logged?
Question: 3
A developer wants to list all of the Tasks for each Account on the Account detail page. When a task is created for a Contact, what does the developer need to do to display the Task on the related Account record?
Question: 4
What is a capability of a StandardSetController?Choose 2 answers
Question: 5
A company wants a recruiting app that models candidates and interviews; displays the total number of interviews on each candidate record; and defines security on interview records that is independent from the security
on candidate records. What would a developer do to accomplish this task? Choose 2 answers