How long would it take to execute the following loop on a computer with 10 processors, assuming addition takes 1 cycle and the clock speed of 1.0 GHz? for (I = 0; I < 105; I = I + 1) { A[I] = B[I] + A[I]; } Please explain your answer.



Answer :

Other Questions