Question: 1. Consider the following algorithm: sum = 0 For j starting at 1 and ending with 12: sum = sum + (9*j + 4) print(sum)

1. Consider the following algorithm:

sum = 0

For j starting at 1 and ending with 12: sum = sum + (9*j + 4) print(sum)

What is printed as a result of executing this algorithm?

2. Consider the following algorithm:

g1 = 3

g2 = 6

For k starting at 3 and ending with 8:

gk = (k-1)gk-1 + gk-2

What is the last term, g8, of the recursive sequence generated as a result of executing this algorithm?

3. Consider the following algorithm:

g1 = 2

g2 = 5

for k > 2:

gk = (k-1)gk-1 - gk-2

What is term g6of the recursive sequence generated as a result of executing this algorithm?

4. Consider the following algorithm:

sum = 0

for j in range(1,13): sum = sum + (6*j - 8) print(sum)

What is printed as a result of executing this algorithm?

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!