What programming construct is used to repeat a set of instructions? 🔊
The programming construct used to repeat a set of instructions is known as a loop. Loops allow a set of commands or operations to be executed multiple times until a specific condition is met. Common types of loops include for, while, and do-while loops. They are essential in programming for tasks such as iterating through data structures or performing repetitive calculations efficiently.
Equestions.com Team – Verified by subject-matter experts