Question 111

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 112

    How should a developer prevent a recursive trigger?
  • Question 113

    Which two statements true about Getter and Setter methods as they relate to Visualforce? Choose 2 answers
  • Question 114

    Which three web technologies can be integrated into a Visualforce page? (Choose three.)
  • Question 115

    A developer is creating a Visualforce page that allows users to create multiple Opportunities. The developer is asked to verify the current user's default Opportunity record type, and set certain default values based on the record type before inserting the record. How can the developer find the current user's default record type?