What is the output of code corresponding


What is the output of code corresponding to the following pseudocode if the user inputs 2, 3, 4, 5?
Declare Number as Integer
Declare Count as Integer
Declare Sums[5] as Integer
Set Count = 0
Set Sums[0] = 0
While Count < 4
Write "Enter a number: "
Input Number
Set Sums[Count + 1] = Sums[Count] + Number
Set Count = Count + 1
End While
While Count >= 0
Write Sums[Count]
Set Count = Count - 1
End While 

Request for Solution File

Ask an Expert for Answer!!
Basic Computer Science: What is the output of code corresponding
Reference No:- TGS098986

Expected delivery within 24 Hours