What is the first output corresponding to the following pseudocode? The first line of output displays the value _________. (Note: if there are any spaces, it is assumed to be one space.) 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]