LAB2 1. Considerthe following source code fragment Int a,b,c,d; a= (b + c)/d ; e= (b*c) - d; e=(((a*b)/c)*d) Assume that q,b, c, d,e are in registers. Develop an assembly language programto performthis assignment statements. Int a,b,c,d; a= (b + c)/d ; e= (b*c) - d; e=(((a*b)/c)*d) Assume that b,e is in registers and c, d,a in memory. Develop an assembly language programto perform this assignment statements. Int a,b,c,d; a= (b AND c) XOR d; a=(b XOR c) OR d; Assume that a,b, c, d are in registers. Develop an assembly language programto performthis assignment statements. Int a,b,c,d; a= (b AND c) XOR d; a=(b XOR c) OR d; Assume that b, c are in registers and a,d in memory. Develop an assembly language programto perform this assignment statements. LAB 3 1. Create an array of 10 elements and initialized the array elements with random values a. Assign array[5]=0 and array[8]=0 (array is the name of the array, youcancreate array with any name) 2.Value=array[3]+ array...