Question: Question 1 (3 points) Q9. Consider the following algorithm: sum = 0 for j in range(1,10): sum = sum + (9*j + 4) print(sum) What

 Question 1 (3 points) Q9. Consider the following algorithm: sum =0 for j in range(1,10): sum = sum + (9*j + 4)print(sum) What is printed as a result of executing this algorithm? Your

Question 1 (3 points) Q9. Consider the following algorithm: sum = 0 for j in range(1,10): sum = sum + (9*j + 4) print(sum) What is printed as a result of executing this algorithm? Your Answer: Answer Question 2 (3 points) Q10. Consider the following algorithm: 81 = 3 82 = 8 for k in range(3,8): 8k = (k-1).8k-1 + 8k-2 What is the last term, gg, of the recursive sequence generated as a result of executing this algorithm? Your Answer: AnswerQuestion 3 (3 points) Q20. Suppose a computer program has been initialized such that the following sets have been stored for use in any algorithm: A = {1, 2, 3, ..., 40} B = {-7, 6, -5, ..., 28} Consider the following algorithm, which represents one part of the whole computer program (comments may occur after the # symbol on any line and are not used in computations): #Part 1: computesA - B and its cardinality AminusB = set() for element in A: # this line runs through every element in A if not(e|ement in B): #A - B is the set of elements that are in A and are not in B AminusB.add(element) # Add to AminusB every element in A if the element is also not in B n = len(AminusB) #leni) returns the number of elements in the array print(n) What value is printed as a result of executing this algorithm? Your Answer: Answer Question 4 (3 points) Q10A. Consider the following algorithm: S1=5 82=3 fork>2: gk = (k-1)gk-1 ' gk-2 What is term g6 01' the recursive sequence generated as a result of executing this algorithm? Your Answer: Answer Question 5 (3 points) Q9A. Consider the following algorithm: sum = 0 for] in range(1,13}: sum = sum + (4*j - 3) print(sum) What is printed as a result of executing this algorithm? Your

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Mathematics Questions!