Loop control in C Language - Quiz

  • A Initialization
  • B Condition
  • C Increment/Decrement
  • D All parts are mandatory
  • A for loop
  • B while loop
  • C do-while loop
  • D if-else loop
  • A To execute code based on a condition
  • B To execute code repeatedly until a condition is false
  • C To execute code at least once and then based on a condition
  • D To execute code based on multiple conditions