Question
Easy

What is the right approach to deal with student errors in computer programming?

1
There should be zero errors even at stage I.
2
Having errors means student does not know programming.
3
Errors are part of a programmer's daily life.
4
Should scold the student whenever there is an error.
Question Details
Time to Solve: 12
Exam: HTET
Level/Paper: Level 3
Chapter: Python Programming Fundamentals
Topic: Input/Output & Debugging
Correct Answer
Option C
Explanation

The correct option is (3): Errors are part of a programmer's daily life. This is the most realistic and pedagogically sound approach. In computer programming, errors, or 'bugs,' are an inherent and inevitable part of the development process for both beginners and seasoned professionals. The educational goal is not to write perfect code immediately, but to master the critical skill of debugging—finding, understanding, and fixing those mistakes. When students encounter…Read More