Final answer:
IndexError, NameError, and TypeError are all examples of runtime errors in programming that occur when code is executed, not to be confused with statistical concepts like chance error or bias.
Step-by-step explanation:
IndexError, NameError, and TypeError are all examples of exceptions or runtime errors in programming. These errors typically occur when a script is executed, and they are indicative of problems such as an out-of-range index for a sequence, a reference to a non-existent variable, or an operation applied to a value of an inappropriate type.
While chance error and bias pertain to statistical analysis and sampling, the errors mentioned in the question are specifically related to coding and programming. Understanding and being able to debug such errors are essential skills in software development.