Computer Science, asked by sharathkneo, 7 months ago

For loop uses ______ as a counter to iterate through the logic. Key Index Absolute Index Range

Answers

Answered by ItzAditt007
0

Your Question:-

For loop uses ______ as a counter to iterate through the logic.

a) Key Index

b) Absolute Index

c) Range

Answer:-

Your Answer is Option c) Range.

Example:-

for i in range (starting point, end point):

(Conditions)

(The above is an example of for loop in python programming language).

More information related loop:-

  • Loops allows us to execute various statements at a same time.

  • Loop also allow us to repeat codes or code several time without writing it again and again.

  • Various loops are available in various programming languages.

  • For example in c and c++ controlled loops and for loops are available while in python, for loop and while loop is available.
Similar questions