
Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN: 9780133594140
Author: James Kurose, Keith Ross
Publisher: PEARSON
expand_more
expand_more
format_list_bulleted
Question
python-Write while loop to repeats while user_num ≥ 1. for each loop iteration, divide the user_num by 2, and print user_num.
example output with input: 2010.0 5.0 2.5 1.25 0.625
please consider---- If code has infinite loop, system will prevent running the code after few secs and say "
just been trying forever and need to understand
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 2 steps with 2 images

Knowledge Booster
Similar questions
- for a in range(5,17,3): How many times the loop statement will run?arrow_forwardUsing Pythonarrow_forwardWrite code to complete DoublePennies()'s base case. Sample output for below program with inputs 1 and 10: Number of pennies after 10 days: 1024 Note: If the submitted code has an infinite loop, the system will stop running the code after a few seconds, and report "Program end never reached." The system doesn't print the test case that caused the reported message #include <stdio.h> // Returns number of pennies if pennies are doubled numDays timeslong long DoublePennies(long long numPennies, int numDays){long long totalPennies; /* Your solution goes here */ else {totalPennies = DoublePennies((numPennies * 2), numDays - 1);} return totalPennies;} // Program computes pennies if you have 1 penny today,// 2 pennies after one day, 4 after two days, and so onint main(void) {long long startingPennies;int userDays; scanf("%lld", &startingPennies);scanf("%d", &userDays);printf("Number of pennies after %d days: %lld\n", userDays, DoublePennies(startingPennies, userDays));…arrow_forward
- (python) Study the following code, specifically the loop. _sum = 10 for k in range (2, 20, 3): _sum = _sum + (2*k) if _sum > 100: print("exceeded 100") Now, rewrite the for loop (for k in range(2, 20, 3):)to be a while loop that accomplishes the same objective. You don't need to show/use the other lines.arrow_forwardPlease answer all questions for the while loop: while loop x=9; // loop variable while (x>0) { cout << x <<” , “ endl; x = x - 1;// update } Questions: 1.What is the name of loop variable, or loop control variable? 2.How many iterations does the loop do? 3What is initial value of count? 4.What is value of i when the loop exits (fails) 5.What is the output of the code? See below: 9, 8, 7, 6, 5, 4, 3, 2, 1, 6.What is increment in i between each each iteration 7.Observe semicolons, commas 8.When is the variable incremented: Beginning orarrow_forward.ORIG X3000 LD R2, ZERO LD RO, MO LD R1, M1 BRZ DONE ADD R2, R2, RO ADD R1, R1, -1 BR LOOP DONE ST R2, RESULT LOOP RESULT ZERO MO M1 HALT FILL X0000 .FILL X0000 .FILL X0004 .FILL X0005 .END What does this program accomplish? What does this code's RESULT value indicate?arrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Computer Networking: A Top-Down Approach (7th Edi...Computer EngineeringISBN:9780133594140Author:James Kurose, Keith RossPublisher:PEARSONComputer Organization and Design MIPS Edition, Fi...Computer EngineeringISBN:9780124077263Author:David A. Patterson, John L. HennessyPublisher:Elsevier ScienceNetwork+ Guide to Networks (MindTap Course List)Computer EngineeringISBN:9781337569330Author:Jill West, Tamara Dean, Jean AndrewsPublisher:Cengage Learning
- Concepts of Database ManagementComputer EngineeringISBN:9781337093422Author:Joy L. Starks, Philip J. Pratt, Mary Z. LastPublisher:Cengage LearningPrelude to ProgrammingComputer EngineeringISBN:9780133750423Author:VENIT, StewartPublisher:Pearson EducationSc Business Data Communications and Networking, T...Computer EngineeringISBN:9781119368830Author:FITZGERALDPublisher:WILEY

Computer Networking: A Top-Down Approach (7th Edi...
Computer Engineering
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:PEARSON

Computer Organization and Design MIPS Edition, Fi...
Computer Engineering
ISBN:9780124077263
Author:David A. Patterson, John L. Hennessy
Publisher:Elsevier Science

Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:9781337569330
Author:Jill West, Tamara Dean, Jean Andrews
Publisher:Cengage Learning

Concepts of Database Management
Computer Engineering
ISBN:9781337093422
Author:Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:Cengage Learning

Prelude to Programming
Computer Engineering
ISBN:9780133750423
Author:VENIT, Stewart
Publisher:Pearson Education

Sc Business Data Communications and Networking, T...
Computer Engineering
ISBN:9781119368830
Author:FITZGERALD
Publisher:WILEY