REAL-WORLD COMPUTER PROGRAMMING FOR KIDS
STEP 24: STEPS ON STEPPING (and BREAKPOINT BONANZA), Part 1
Welcome back! Are you ready to step through some code on our exploratory mission to find a bug or two?
We will start off by putting a Breakpoint on the line of code in the “Next” Button’s Click Event Handler that calls the UpdatePercentageCorrect method:

Your first question might understandably be, “What is a Breakpoint?” It is a point at which you want t…