A______command is used to avoid repetition of commands
Answers
Answer: Loop commands
Explanation:
A command is a specific instruction given to a computer to perform a particular action. In computing, repetition of commands is a common requirement. It is necessary to avoid typing the same command repeatedly to save time and reduce the chances of errors. To prevent the repetition of commands, a loop command is used.
A loop command is a control structure in programming that allows you to repeat a sequence of instructions multiple times. It executes a set of statements repeatedly until a certain condition is met. The two most common types of loops are the "for loop" and the "while loop."
The for loop is used when the number of times a command needs to be repeated is known in advance. It executes a set of statements for a specific number of times. The while loop, on the other hand, is used when the number of times a command needs to be repeated is not known in advance. It executes a set of statements until a particular condition is met.
Loop commands are useful in a wide variety of applications, including repetitive tasks in programming, data processing, and system administration. They are an essential tool for improving productivity and efficiency while reducing the likelihood of errors.
Learn more about Loop commands :
https://brainly.in/question/34870358
#SPJ3