Solved

(A) Consider the Following Algorithm Segment:
For i:=1 i:=1 To n n

Question 2

Essay

(a) Consider the following algorithm segment:
for i:=1 i:=1 to n n
for j:=1 j:=1 to i i
x:=5i+8j x:=5 \cdot i+8 \cdot j
next j j
next i i
How many additions and multiplications are performed when the inner loop of this algorithm segment is executed? How many additions and multiplications are performed when the entire algorithm segment is executed?
(b) Find an order for this algorithm segment from among the following: log2n,n,nlog2n\log _ { 2 } n , n , n \cdot \log _ { 2 } n , n2,n3n ^ { 2 } , n ^ { 3 } , and n4n ^ { 4 } . Give a reason for your answer.

Correct Answer:

verifed

Verified

Related Questions