HOTSPOT You need to create the codeunit to read the POS terminal APIs. How should you complete the code segment? To answer, select the appropriate options in the answer area. NOTE; Each correct selection is worth one point. 
Isn’t PUBLIC the better pick for Access in box 1 if we want to call it from other places? The procedure maybe needs a parameter too. I saw something similar in an official practice test.
ACCESS = INTERNAL and procedure readAPI() fit here. Makes sense because extension scope is internal, and the OnRun calls without params. I’m pretty sure about both picks but open if anyone else spots a catch.
Had something like this in a mock. in some practice sets, and I went with ACCESS = INTERNAL for box 1 and procedure readAPI() for box 2. The call from OnRun doesn’t pass any params so keeping it simple lines up. Not 100 percent sure, but fits the pattern I’ve seen, someone let me know if you see another tweak here.
ACCESS = INTERNAL and procedure readAPI() are the best choices. Keeps the codeunit internal to the extension and the procedure matches what's called in OnRun. Pretty confident but let me know if I missed something obvious.
You need to fix the code. For each of the following statements, select Yes if the statement is true. Otherwise, select No. NOTE: Each correct selection is worth one point. 




The procedure does not work as expected. You need to find and fix all errors in HTTP class usage. For each of the following statements, select Yes if the statement is true. Otherwise, select No. NOTE: Each correct selection is worth one point.
You need to make the permission set visible on the Permission Sets page. Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order. NOTE: More than one order of answer choices is correct. You will receive credit for any of the correct orders you select. 

You need to provide the following implementation for a third permission set: • Create a new Permission Set C that is a composite of Permission Set A and Permission Set B. • Assign Permission Set C to a user. You need to ensure that the user has only read access to the Job table. Solution: Set the Excluded Permission Sets property to Permission Set B. Does the solution meet the goal?



