Question: If the time cost for each for loop below ( true and false conditions take the same time ) takes 1 us ( microsecond =

If the time cost for each for loop below (true and false conditions take the same time) takes 1us (microsecond =0.000001 seconds), for following code how many microseconds (us) will it take to execute if n =10?
for( int i =0; i < n; ++n)// for loop line costs 1us each time it loops once
for( int i =0; i < n; ++n)// for loop takes 1us each time it loops once
y = algorithm_01(y)// algorithm costs 10us to assigns value to y
}
}// In otherwords c the constant for each line has an actual value (e.g.1us or 10us)
What is the nearest value of the time it takes to run this loop code?
Question 3 options:
811us
101100us
122us
1121us

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 Databases Questions!