Question 96

A Licensed_Professional__c custom object exist in the system with two Master-Detail fields for the following objects: Certification__c and Contact. Users with the "Certification Representative" role can access the Certification records they own and view the related Licensed Professionals records, however users with the
"Salesforce representative" role report they cannot view any Licensed professional records even though they own the associated Contact record. What are two likely causes of users in the "Sales Representative" role not being able to access the Licensed Professional records? Choose 2 answers
  • Question 97

    The following code snippet is executed by a Lightning web component in an environment with more than 2,000 lead records:

    Which governor limit will likely be exceeded within the Apex transaction?
  • Question 98

    Assuming that naze is 8 String obtained by an <apex:inpotText> tag on 8 Visualforce page, which two SOQL queries performed are safe from SOQL injection?
    'Choose 2 answers
    A)

    B)

    C)

    D)
  • Question 99

    What is a capability of the Developer Console?
  • Question 100

    What is the value of x after the code segment executes?String x = 'A';Integer i = 10;if ( i < 15 ) {i = 15;x
    'B';} else if ( i < 20 ) {x = 'C';} else {x = 'D'; }