📢 Too many exams? Don’t know which one suits you best? Book Your Free Expert 👉 call Now!


    Question

    When using a debugger, what does "stepping over" a

    function call mean?
    A Executing the function line by line. Correct Answer Incorrect Answer
    B Skipping the function entirely. Correct Answer Incorrect Answer
    C Executing the function as a single unit without entering its internal code. Correct Answer Incorrect Answer
    D Restarting the program from the beginning of the function. Correct Answer Incorrect Answer
    E Changing the function's return value. Correct Answer Incorrect Answer

    Solution

    "Step over" executes the current line of code. If the current line contains a function call, the debugger executes the entire function and stops at the next line after the function call, without stepping into the function's internal code.

    Practice Next
    ask-question