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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started