Which of these for loops will generate the same output as the following while loop? i = 4 while i < 74: print(i) i = i + 2 for j in range(4, 73, 2): print(j) for j in range(4, 71, 1): print(j) for j in range(4, 71, 2): print(j) for j in range(4, 75, 1):

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter5: Control Structures Ii (repetition)
Section: Chapter Questions
Problem 34SA
icon
Related questions
Question

Question 6 

Which of these for loops will generate the same output as the following while loop?
i = 4
while i < 74:
print(i)
i = i + 2
for j in range(4, 73, 2):
print(j)
for j in range(4, 71, 1):
print(j)
for j in range(4, 71, 2):
print(j)
for j in range(4, 75, 1):
print(j)
for j in range(4, 76, 1):
print(j)
None of these options
Transcribed Image Text:Which of these for loops will generate the same output as the following while loop? i = 4 while i < 74: print(i) i = i + 2 for j in range(4, 73, 2): print(j) for j in range(4, 71, 1): print(j) for j in range(4, 71, 2): print(j) for j in range(4, 75, 1): print(j) for j in range(4, 76, 1): print(j) None of these options
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Basics of loop
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,