CRT-450 Exam Question 151

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?
  • CRT-450 Exam Question 152

    Which exception type cannot be caught?
  • CRT-450 Exam Question 153

    What is the data type returned by the following SOSL search? {FIND 'Acme*' in name fields returning account,opportunity};
  • CRT-450 Exam Question 154

    A developer has a requirement to create an Order when an Opportunity reaches a 'Closed-Won' status.
    Which tool should be used to implement this requirement?
  • CRT-450 Exam Question 155

    Given the code below, what can be done so that recordcount can be accessed by a test class, but not by a non-test class? Public class mycontroller{ private integer recordcount; }