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.