1) Put appropriately placed ends in the following code.
2)Indent the code appropriately
3)Draw a flowchart for the following
4)What is the output for each of the following values for x,y (try to figure this out without putting the code in a program and running it)
x=2,y=6
x= 13, y= 2
x=0,y=1
x=-1,y=4
x=3,y=2
x= 14, y =5
5) Why would the above data set be adequate for testing this code does what we want?

if x>0 & x<10
if y > 5
f=x*x+y
else
f=x-y
elseif x>=10
if y<4
f=3
else
f=x-2
else
if y<2
f=y^2
else
f=y