Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.
What is the first and last output corresponding to the following pseudocode?
The first output is _________ .
The last output is__________.
Declare Numbers[ 12 ] As Integer
Set K = 0
While K <= 2
Set Numbers[3 * K] = K + 1
Write Numbers[3 * K]
Set K = K + 1
End While