Assembly Language
10. Will the following functions produce the same result and why? (Be precise) Note: Assume that int array[]={ 1,2,3,4); 1. sum the array sequentially * 2. int sequentialSum(int a, int n) 3. int sum 0 4. int 1; 5. for (i = 0; i < n; i++) { ui 7. 8. 9. sum the array using multiple threads 10. int parallelSum(int* a, int n) f 11. int sum 0; 12. int i; 13. #pragma omp
OR
OR