180k views
2 votes
While running your app in debug mode with breakpoints enabled, which command in the Debug menu and toolbar will you use to Execute one statement at a time?a.) Stop Debuggingb.) Step Outc.) Step Intod.) Continue

User Egoldx
by
8.1k points

1 Answer

2 votes

Answer:

c. step into

Step-by-step explanation:

To execute one statement at a time while running an app in debug mode with breakpoints enabled, you would use the "Step Into" command. This command allows you to move through the code one line at a time, executing each statement and stepping into any method calls that are encountered. It is useful for closely examining the execution flow and variables at each step.

User Matsko
by
8.1k points