To improve readability, use white
text on a dark green background but <span>the darker text on a lighter background
was rated more readable than lighter text on dark backgrounds according to
survey in every color combination. Example, red text on white background is
more readable than white text on red background.</span>
3D printing helps to reduce the time it takes for a manufacturer to create the product. This lets manufacturers invest their time to make flawless products because the production cycle time is reduced.
This program will the string array in the given format.
int main(void){
char arr[6];
int counter;
strcpy(arr[], "ARRAY");
for(counter=0; counter<6; counter++){
printf("%c", arr[counter]);
}
return 0;
)
Note: Do not forget to include all the necessary library that is needed to run this program.
Answer:
a) Speedup gain is 1.428 times.
b) Speedup gain is 1.81 times.
Explanation:
in order to calculate the speedup again of an application that has a 60 percent parallel component using Anklahls Law is speedup which state that:

Where S is the portion of the application that must be performed serially, and N is the number of processing cores.
(a) For N = 2 processing cores, and a 60%, then S = 40% or 0.4
Thus, the speedup is:

Speedup gain is 1.428 times.
(b) For N = 4 processing cores and a 60%, then S = 40% or 0.4
Thus, the speedup is:

Speedup gain is 1.81 times.