Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions Icon

Related questions

Question

TASK 5: Write a program with a meaningful loop calculation that uses a parallelized loop. Explain the way the loop works and show it by the output of the program. Measure the time taken by your code in seconds. Submit the code, the explanation and a screenshot of the run.

Expert Solution
Check Mark
Step 1

Step 1

Parallelized loop means, The loop which doesn't depend on the previous loop and all iterations are independent.

That means, if we take a for loop as an example:

for(int i=0;i<n;i++){

a[i]=i+50;

}

In this loop each iteration is not depend on any previous levels.

If we consider another example:

for(int i=0;i<n;i++){

a[i]=a[i-1]+1;

}

In this it is depend on previous iteration.so it is not comes under parallelized loop.

Step 2

Now, consider a C program with parallelized loop:

#include<stdio.h>

int main(){

int n, i, a[100];

printf("Enter a number: ");

scanf("%d",&n);

for(i=0; i<n; i++){

a[i] = i+50;

printf("%d ",a[i]);

}

return 0;

}

Knowledge Booster
Background pattern image
Similar questions
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education