Question 101

A custom exception "RecordNotFoundException" is defined by the following code of block.public class RecordNotFoundException extends Exception()which statement can a developer use to throw a custom exception?choose 2 answers
  • Question 102

    A developer executes the following code in the Developer Console:
    List<Account> fList = new List <Account> ();For(integer i= 1; I <= 200; i++){fList.add(new Account ( Name
    = 'Universal Account ' + i));}Insert fList;List <Account> sList = new List<Account>();For (integer I = 201; I
    <
    20000; i ++){sList.add(new Account (Name = 'Universal Account ' + i));}Insert sList;How many accounts are created in the Salesforce organization ?
  • Question 103

    Which control statement should a developer use to ensure that a loop body executes at least once?
  • Question 104

    What can be used to override the Account's standard Edit button for Lightning Experience?
  • Question 105

    A developer created a child Lightning web component nested inside a parent Lightning web component. The parent component needs to pass a string value to the child component.
    In which two ways can this be accomplished?
    Choose 2 answers