Multiple choice

JOHN was running the Employees form in debug mode and stepping through a procedure (as shown in the exhibit). He knows that the stored function RAISE_SALARIES performs the correct calculation. Which forms builder menu item from the Debug menu should he select to position the marker on the line of code that begins as follows? IF :employees.salary > 2000

  1. Go

  2. Step Into

  3. Step Over

  4. Step Out

  5. Stop

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Step Over executes the current line and advances to the next line in the current program unit. When debugging and you want to continue through code without stepping into called subprograms, Step Over keeps you at the same level of the call stack.