question archive What is the first output corresponding to the following pseudocode? The first line of output displays the value _________
Subject:Computer SciencePrice:2.86 Bought3
Declare N As Integer
Declare K As Integer
Declare X[100] As Integer
Set N = 4
Set K = 1
While K <= N
Set X[K] = K^2
Set K = K + 1
End While
Write X[N/2]
Write X[1] + " " + X[N - 1]
2. In parallel arrays, corresponding elements in each array must have the same __________.
3. Given an array named Stuff, how many elements will be filled with the following loop?
For (K = 0; K <= 9; K+2)
Set Stuff[K] = K
End For
The answer to 3 is not 10.
1. 41 9
As the array is filled such as for X[1] = 12 = 1, X[2] = 22 = 4 and so on such that each index stores its square.
Hence, for X[N/2] we get X[4/2] = X[2] = 4
and X[1] = 1 and X[N-1] = X[3] = 9.
2. data type
if the values are integers, the parallel values should be integers as well, if its char, it should be char etc
3. 5
As the value of k is incremented by 2, the loop will run as k = 0; k = 2; k = 4; k = 6; k = 8 and then will break as k = 10 breaks the condition