Computer Science, asked by TbiaSamishta, 1 year ago

Which of the following allows us to specify a list of values in its statement? (a) while (b) until (c) for (d) if

Answers

Answered by JEWL
5

the answer is "FOR" for is used for values

Answered by StaceeLichtenstein
1

For loop is the correct answer to the given question.

Explanation:

  • For loop is used when the user known the number of iteration he wanted to repeated the task .We can pass number of list of values into the for loop statement .
  • Following are the syntax of for loop statement .

  for(initialization;condition checking;increment or decrement)

    {

   // statement

   }

  • The others options are not specify the list of value in its statement that's why they are incorrect option.

Learn More :

  • brainly.in/question/14675489
Similar questions