Computer Science, asked by mansitayal3800, 11 months ago

Which of the following is not one of the programming pattern covered and their chapter 1 in python ( random step conditional step sequential step repeated steps)

Answers

Answered by nidaeamann
10

Answer:

Random steps

Explanation:

Among the various options given in question statement, the correct one is the first one, that is random step when we look at the chapter 1

In python, a random walk or random step forms a random process in which a pointer or an object is randomly moved within the fixed space. In other words, successive steps are done in random way

Answered by poojan
18

Random Step is the answer.

Explanation:

  • Sequential steps (loops), conditional statements, and repeated steps are generally discussed in chapter one as they are the basics of python language.
  • Coming to the random step, for that one needs to use Random class.
  • Random class is pre-defined and it should be imported. For that one needs to jump into the concept of libraries in python. The methods in the random library help one in generating the value randomly.
  • So, the answer is Random steps.

Learn more :

1) What is the name of jane’s attribute (not method) that is referred to in the following code?

import turtle

jane = turtle.Turtle()

jane.forward(20)

print(jane.x)

brainly.in/question/19176451

2) Given the following permutation of a,b,c,d,e,f,g,h,i,j, what is the next permutation in lexicographic (dictionary) order?

brainly.in/question/12375223

Similar questions