Skip to content

Latest commit

 

History

History
108 lines (74 loc) · 7.06 KB

debugging.md

File metadata and controls

108 lines (74 loc) · 7.06 KB

Debugging

Projected Time

1.5 to 2 hours

  • 12 minutes for a video walkthrough of slides
  • 45 minutes for Independent Practice #1
  • 30 minutes combined for Independent Practice #2 & Group Practice #1

Prerequisites

Motivation

  • Debugging is the art of finding errors/bugs in programs and determining how to correct them. Things will go wrong during programming, even for experienced software engineers.
  • It is ideally part of the testing process but in reality, it is done at every step of programming. Coders should debug the smallest of their modules before moving on. This decreases the number of errors thrown up during the testing phase and reduces testing time and effort significantly (reference from tutorialspoint).

Which companies use debugging? Everyone because all companies want their product to be bugs/errors free.

Objectives