Notes in a program which explains what the program is doing are called ______

Notes in a program that explain what the program is doing are commonly referred to as "comments." Comments are lines of text within the program's code that are not executed by the computer but rather serve to provide information and clarification to developers who read and maintain the code.

To include comments in a program, various programming languages provide specific syntax. For example, in many languages, single-line comments are denoted by double forward slashes (//) at the beginning of the line, while multi-line comments are enclosed between /* and */.

Adding comments to a program is considered good practice as it helps improve code readability, enhances collaboration among developers, and makes it easier to understand the purpose and functionality of the program.