Question: 1
Which statement about the Lookup Relationship between a Custom Object and a Standard Object is correct?
Question: 2
Where can debug log filter settings be set?Choose 2 answers
Question: 3
On a Visualforce page with a custom controller, how should a developer retrieve a record by using an ID that is passed on the URL?
Question: 4
A developer has the following code block:
public class PaymentTax {public static decimal SalesTax = 0.0875;} trigger OpportunityLineItemTrigger on OpportunityLineItem (before insert, before update) {PaymentTax PayTax = new PaymentTax();decimal ProductTax = ProductCost * XXXXXXXXXXX;} To calculate the productTax, which code segment would a developer insert at the XXXXXXXXXXX to make the value the class variable SalesTax accessible within the trigger?
Question: 5
What is the result when a Visualforce page calls an Apex controller, which calls another Apex class, which then results in hitting a governor limit?