Question

3. What does this code do? Write an explanation in English python n=1 while (n <1000): print(n) n-n
0 0
Add a comment Improve this question Transcribed image text
Answer #1

#! is called shebang, is used mostly in Unix based systems. It is followed by the full path to the interpreter such as /bin/bash or /usr/bin/python. All scripts under Linux execute using the interpreter specified on a first line.

n=1 :- initial/ start value of n.

while(n<1000):     #run this loop till n is smaller than 1000, If n becomes greater or equal to 1000,

   # this loop will be over and our statement will go pass this loop

    print(n)           # printing the value of n in each iteration

    n = n * 5         #or it can be written like n *= 5 . No spacing between asterisk and assignment operator

                             #we are multiplying n to 5 and assigning the value to the n itself.

                              #Main thing to notice is that n is multiplied by 5 and assign to n ,

                              #after first iteration inside the loop n has become 5. but still less than 1000. Till

                              #that time n will be updated.

Here:

Before Entering the loop n=1

(1 < 1000 ) #here condition is checked, if condition is True, then we go into the loop else we skip the loop

After the entering for the first time(iteration 1): n = n*5 i.e, n=1*5=5. operations are done from right handside of the assignment operator

(5 < 1000)

iter2: n = n*5 = 5*5=25

(25<1000)

iter3: n=n*5 = 25 *5=125

(125 < 1000)

iter4: n=n*5 = 125 * 5 = 625

(625<1000)

iter5: n= n*5 = 625 * 5 = 3125

(3125 < 1000) ###FALSE CONDITION, we break out of the loop.

Hope You get your answer.

Add a comment
Know the answer?
Add Answer to:
3. What does this code do? Write an explanation in English python n=1 while (n <1000):...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • R programming: provide code and explanation b. -Here's an integer vector . what happens if you...

    R programming: provide code and explanation b. -Here's an integer vector . what happens if you ins ert NULL into the 4th position of the vector ?- irJ a <-1:10 print (a) 16. -what is the difference between the assignment operators 、<-. and 、<<-.? Look up helpCassignops), 15. -Can you have a data frame with 0 rows? what about 0 columns? If it is possible, write some code to create such a data. frame._ write your answer here.

  • Prove the ratio test  . What does this tell you if exists? (Ratio test) If for all...

    Prove the ratio test  . What does this tell you if exists? (Ratio test) If for all sufficiently large n and some r < 1, then converges absolutely; while if for all sufficiently large n, then diverges. lim |.1n+1/01 700 In+1/xn < We were unable to transcribe this image2x+1/2 > 1 We were unable to transcribe this image

  • Code in R Part 1. a) Run the following lines: n<-30 x<-matrix(rnorm(n * 1000), 1000,n) xL,1:3]<-xl,1:3]*10...

    Code in R Part 1. a) Run the following lines: n<-30 x<-matrix(rnorm(n * 1000), 1000,n) xL,1:3]<-xl,1:3]*10 y<-1+matrix(rnorm (n * 1000), 1000, n) Note: the samples in "x" are contaminated. b) Conduct 1000 two-sample two-sided t-tests for the associated rows of "xand "". (e.g., for the first test, the two samples are "x[1," and "y[1,]", for the second test, the two samples are "x[2," and "y[2,1",etc.). Calculate the total number of rejections of the 1000 tests. (Use significant level a =...

  • What is the output of the following C++ code? int count = 1; int num =...

    What is the output of the following C++ code? int count = 1; int num = 25; while (count < 25) { num--; count++; } cout << count « " " « num << endl i 25 1 0 24 1 0 25 0 0 24 0 In this while loop statement, while (counter < 10), where counter is an int variable. Which statement below is an equivalent way to write this while statement? while (10 < counter) while (9...

  • Provided N(0, 1) and without using the LSND program, find P( - 2 <3 <0) Provided...

    Provided N(0, 1) and without using the LSND program, find P( - 2 <3 <0) Provided N(0, 1) and without using the LSND program, find P(Z < 2). Provided N(0, 1) and without using the LSND program, find P(Z <OOR Z > 2). Message instructor about this question Provided N(0, 1) and without using the LSND program, find P(-1<2<3). 0.84 Message instructor about this question

  • Using the pseudocode answer these questions Algorithm 1 CS317FinalAlgorithm (A[O..n-1]) ito while i<n - 2 do...

    Using the pseudocode answer these questions Algorithm 1 CS317FinalAlgorithm (A[O..n-1]) ito while i<n - 2 do if A[i]A[i+1] > A[i+2) then return i it i+1 return -1 1. Describe what it does and compute what value is returned when the input is the list {1, 2, 3, 4, 5}. (Hint: We're using 0-based array indexing, so 0 would represent the index of the first element, 1 the second element, etc.) 2. Identify and describe the worst-case input. 3. Identify and...

  • Using the pseudocode answer these questions Algorithm 1 CS317FinalAlgorithm (A[O..n-1]) ito while i<n - 2 do...

    Using the pseudocode answer these questions Algorithm 1 CS317FinalAlgorithm (A[O..n-1]) ito while i<n - 2 do if A[i]A[i+1] > A[i+2) then return i it i+1 return -1 4. Calculate how many times the comparison A[i]A[i+1] > A[i+2] is done for a worst-case input of size n. Show your work. 5. Calculate how many times the comparison A[i]A[i+1] > A[i+2] is done for a best-case input of size n. Show your work.

  • What will be printed for the code below: age = 15 if (age < 13) {...

    What will be printed for the code below: age = 15 if (age < 13) { print ("child") } else if (age >= 13 & age <=19) { print ("teenager") } else { print ("adult") } What will be the output of the code below: for(i in 1:100) { if(i <= 20){ print (i) }

  • What is the output of the following code fragment? int i = 1; while( i <=...

    What is the output of the following code fragment? int i = 1; while( i <= 5 ) if(i == 2 || i == 4) System.out.println(i + ":" + " is an even index) System.out.println("i: " + i); i++;

  • 10 What does the last printf in this code print to the screen? a)n-7 b)n- 0...

    10 What does the last printf in this code print to the screen? a)n-7 b)n- 0 c)n--1 d) None of the above 鬐include< stdio. h> int main) int n-0 for (n-7: n<O; n-- printf (n") printf ("n *%d", n); - return 11-What does the code print to the screen? 鬐include< stdio.h> void fun (int) int main) b) 8 d) None of the above fun (3) return void fun (int a) int x-10 while(a !_ 3 x > s} if a...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT