def summation (array): a = 0 for i in array: a = a + i a return a #Run time for first array with n = 10 start time.time() summation ([85,49,14,11,33,94,30,20,25,33]) print("Execution time for 1st array: {}".format(time.time() #Run time for second array with n = 25 start= time.time() summation ([92,14,67,52,77,65,88,27,84,94,35,70,89, 80, 35,55,7 print("Execution time for 2nd array: {}".format(time.time() Execution time for 1st array: 0.0 Execution time for 2nd array: 0.001001119613647461 What is the running time complexity of the algorithm.

Microsoft Visual C#
7th Edition
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Joyce, Farrell.
Chapter6: Using Arrays
Section: Chapter Questions
Problem 19RQ
icon
Related questions
Question
def summation (array):
a = 0
for i in array:
a = a + i
a
return a
# Run time for first array with n = 10
start = time.time()
summation
([85,49,14,11,33,94,30,20,25,33])
print("Execution time for 1st array: {}".format(time.time()
# Run time for second array with n = 25
start= time.time()
summation ([92,14,67,52,77,65, 88,27,84,94,35,70,89, 80,35,55,7
print("Execution time for 2nd array: {}".format(time.time()
Execution time for 1st array: 0.0
Execution time for 2nd array: 0.001001119613647461
What is the running time complexity of the algorithm.
Transcribed Image Text:def summation (array): a = 0 for i in array: a = a + i a return a # Run time for first array with n = 10 start = time.time() summation ([85,49,14,11,33,94,30,20,25,33]) print("Execution time for 1st array: {}".format(time.time() # Run time for second array with n = 25 start= time.time() summation ([92,14,67,52,77,65, 88,27,84,94,35,70,89, 80,35,55,7 print("Execution time for 2nd array: {}".format(time.time() Execution time for 1st array: 0.0 Execution time for 2nd array: 0.001001119613647461 What is the running time complexity of the algorithm.
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Array
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
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Programming with Microsoft Visual Basic 2017
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:
9781337102124
Author:
Diane Zak
Publisher:
Cengage Learning