20. Consider an algorithm intending to store all prime numbers between 2 and 20 (inclusive) in a list prime_list. There exists a helper function called is_prime(n) which returns True if n is prime and False if n is not prime. i = 1 prime_list = 0| while i <= 10: #missing code Which of the following can be used replace the missing code? (a) if is_prime(2*i): prime_list.append(2*i) i = i+ 1 (b) if is_prime(2*i): prime_list.append(2*i) i =i+ 1 (c) if is_prime(i): prime_list.append(2*i) i =i+ 1 (d) prime_list.append(is_prime(2*i)) i = i+1

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter17: Linked Lists
Section: Chapter Questions
Problem 18PE
icon
Related questions
Question
20. Consider an algorithm intending to store all prime numbers between 2 and 20 (inclusive) in a list prime_list. There
exists a helper function called is_prime(n) which returns True if n is prime and False if n is not prime.
i = 1
prime_list = [0|
while i <= 10:
#missing code
Which of the following can be used replace the missing code?
(a) if is_prime(2*i):
prime_list.append(2*i)
i = i+ 1
(b) if is_prime(2*i):
prime_list.append(2*i)
i = i+ 1
(c) if is_prime(i):
prime_list.append(2*i)
i = i+ 1
(d) prime_list.append(is_prime(2*i))
i = i+ 1
Transcribed Image Text:20. Consider an algorithm intending to store all prime numbers between 2 and 20 (inclusive) in a list prime_list. There exists a helper function called is_prime(n) which returns True if n is prime and False if n is not prime. i = 1 prime_list = [0| while i <= 10: #missing code Which of the following can be used replace the missing code? (a) if is_prime(2*i): prime_list.append(2*i) i = i+ 1 (b) if is_prime(2*i): prime_list.append(2*i) i = i+ 1 (c) if is_prime(i): prime_list.append(2*i) i = i+ 1 (d) prime_list.append(is_prime(2*i)) i = i+ 1
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Lists
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