What is difference between conditional constructs and loops?
Answers
Answered by
1
Answer:
Conditional statements checks for a condition to be true or false. Loop is a structure which executes repetedly depending upon the value of the conditional statements. Conditional statement will execute only once if condition is true whereas loop will execute repeatedly till the condition becomes false.
Answered by
2
Explanation:
Conditional statements checks for a condition to be true or false. Loop is a structure which executes repetedly depending upon the value of the conditional statements. Conditional statement will execute only once if condition is true whereas loop will execute repeatedly till the condition becomes false.
Similar questions