Programmatic Development Using Apex and Visualforce (DEX 450) Quiz Questions and Answers

Answer :
  • Sandbox to production
  • Sandbox to sandbox
Answer :
  • Database.insert(propertiesToCreate, false);
Answer :
  • For (variable : list_or_set) {…}
Answer :
  • Any changes up to the error are rolled back
Answer :
  • PaymentTaxt. SalesTax
Answer :
  • Use the constructor method for the controller
Answer :
  • By using Limits.getDMLRows() and then display an error message before the number of DML statements is exceeded
Answer :
  • Create data for testing. Call the method being tested. Verify that the results are correct
Answer :
  • Validation rules
  • Lookup filters
  • Page layouts
Answer :
  • public MyController() { account = new Account(); }