Answer: 
Step-by-step explanation:
Given
The area of the square is 
Suppose a is the side length of the square
The area of the square is given by

So, we can write

length of each side is 
Is that a trick question wouldn't it be 20??? I'm confused
"Table World" is quoting a better price
<u>Step-by-step explanation:</u>
The shop "Table World" is quoting a price of 140 inclusive of 17.5% VAT
that means 140 is the final price a customer needs to pay.
While other shop"Tables R us" is quoting a price of 120 without VAT
so we need to add VAT in the price to find out the final price
price+VAT on the price
=120+120*(17.5/100)
=120+120*0.175
=120+21
so final price =141
so comparatively "Table World" is quoting a better price
The slope is 0 so it's a horizontal line parallel to the x-axis. All the values of y are the same. The line passes through the point (1,8), so y=8.
The program is an illustration of loops
<h3>What are loops?</h3>
Loops are program statements that are used to perform repetition
<h3>The main program</h3>
The program written in Python, where comments are used to explain each line is as follows:
#This initializes sum to 0
summ = 0
#This gets input for the first number
num = int(input())
#This is repeated while num is not -1
while num!= -1:
#This calculates the sum
summ+=num
#This gets input for the num
num = int(input())
#This prints the sum
print(summ)
Read more about loops at:
brainly.com/question/16397886