Question: 1
Which statement is true regarding both Flow and Lightning Process?
Question: 2
A developer has a page with two extensions overriding the Standard controller for Case. Each extension has a method called Save. The page has a command button as defined: What will happen when a user clicks the command button?
Question: 3
What is a valid request for the following REST method: @HttpPost global static void myPostMethod(String sl,Integer il, Boolean bl, String b2) Choose 2 answers
Question: 4
A developer wrote a Visualforce page for Sales Reps to add products to an order. The page takes a URL query parameter, productFamily, which filters the product results. The test method for the filter behavior has an assertion failing due to an incorrect number of results. Why could the test be failing? Choose 2 answers
Question: 5
A developer writes the following code: public with sharing class OrderController { public PaqeReference sendOrder() { Order__c order = new Order__c insert order; ExternalOrder externalOrder = new ExternalOrder (order); Http h = new Http(); HttpRequest req = new HttpRequest(); req.setEndpoint('https://www.example.org/v1/orders'); req.setMethod('POST'); req.setBody(JSON.serialize(externalOrder)); HttpResponse res = h.send(req); order = (ExternalOrder)JSON.deserialize(res.getBody(),ExternalOrder.class); } } While testing the code, the developer receives the following error message: System.CalloutException : You have uncommitted work pending What should the developer do? Choose 2 answers