Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

1. The result of the computation 5+3*4*(5+2) is 89. ( is this correct?) 2 . In t

ID: 3659845 • Letter: 1

Question

1. The result of the computation 5+3*4*(5+2) is 89. ( is this correct?) 2 . In the following while loop, which of the statements can be moved above the loop without changing the outcome of the loop? while (count < 50) { base = 2; count = count + base; Console.Writeline(count); } a. base = 2; b. count = count + base; c. Console.Writeline(count); d. (count < 50) } 3. In the following piece of code , what is the value of FILL_LIMIT that will ensure that all elements within the bounds of IntArray are printed? int theArray[25]; while (index < FILL_LIMIT) { Console.WriteLine(theArray[index]); Index = index + 1; } a. 20 b. 22 c. 24 d. 25

Explanation / Answer

1. yes 5+(3*4*7)=5+84=89 2 . a. base = 2; 3. In the following piece of code , what is the value of FILL_LIMIT that will ensure that all elements within the bounds of IntArray are printed? int theArray[25]; while (index