Insaan wants to print the multiplication table using a loop . Which loop will he select for the same and why ?
Answers
Answered by
3
Answer:
For loop
Explanation:
For loops are to be used when the start and end values are known
Answered by
1
Answer: "For loop"
Explanation: The "for" loop will repeat for a fixed number of times decided by a counter variable. This variable is incremented or decremented after each iteration of the loop and when it reaches a certain value, it will stop.
Similar questions