Click Here To Download This Answer Instantly
Given a list of numbers, find the sum of the squares of the numbers in the list.Start
1. Declare SIZE as integer = 10
2. Declare sum as number = 0
3. Declare list[SIZE] as number4. loop for i=0 to 9
a. Set sum = sum + (list[i] * list[i])
5. End for loop
6. Display “Sum of Squares = ” + sumEnd