Question: 1
A developer is writing unit tests for the following method: public static Boolean isFreezing(String celsiusTemp) { if(String.isNotBlank(celsiusTemp) && celsiusTemp.isNumeric()) return Decimal.valueof(celsiusTemp) <= 0;
return null; } Which assertion would be used in a negative test case?
Question: 2
During the order of execution of a Visualforce page GET request, what happens after this step: Evaluate constructors on controllers and extensions?
Question: 3
What is the correct syntax for calling a controller action from a Visualforce page and updating part of the page once the action is completed? Choose 2 answers
Question: 4
Employee-c is a Child object of Company-c. The Company-c object has an external Id field Company_Id_c. How can a developer insert an Employee-c record linked to Company-c with a Company_Id__c of '999'?
Question: 5
Which use case is an appropriate fit for the @future asynchronous Apex method? Choose 2 answers