Question: 1
What is the optimal syntax for adding a link to a case in a Visualforce page? Choose 2 answers
Question: 2
A Salesforce developer created a Contact validation rule so that the Email field cannot contain "abc.com." There is an active workflow rule that updates the Email field of a contact record to "test@abc.com" if the contact's First Name field contains the word "Test." A customer tries to create a Contact record with the first name "Test Contact" and the email "test@test.com." What behavior will be observed?
Question: 3
A developer would like to use jQuery in a Visualforce page. Which markup can be used to load the library on the page?
Question: 4
What is the tag used for in Visualforce pages?
Question: 5
A developer has created the following trigger: trigger ProcessDoNotCall on Contact (after update) { List lstCon = [SELECT Id, DoNotCall, Department FROM Contact WHERE Department = 'HR' AND Id IN :Trigger.new]; for(Contact c : lstCon) c.DoNotCall= true; update lstCon; } The developer executes the following code anonymously in the Developer Console. Assume that the record exists in Salesforce. Contact con = new Contact(Id='003oOOOOOOVHXOm',Department = 'HR') update con; Which behavior will the developer observe?