Answer:
D. 
Step-by-step explanation:
Firstly, we know it's close to 6.75, so we can compute 6.75*6.75 and the product should be close to whatever's under the
. 6.75*6.75 = 45.5625, so we can already answer.
We could also figure out why other answers are bad.

Answer:
38
Step-by-step explanation:
We have to substitute x with 2 and y with 4
when the sign of a operation is not expressed it means that the operation is a
multiplication
So we have
3*2 + 2*(4)^2
6 + 2*(16)
6 + 32
38
Answer:
Step-by-step explanation:
We can get this done by using the code
def digits(n):
count = 0
if n == 0:
return 1
while (n > 0):
count += 1
n= n//10
return count
Also, another way of putting it is by saying
def digits(n):
return len(str(n))
------------------------------------------
print(digits(25)) # Should print 2
print(digits(144)) # Should print 3
print(digits(1000)) # Should print 4
print(digits(0)) # Should print 1
Doing this way, we've told the system to count the number of figures that exist in the number. If it's 1000 to 9999, then it records it as 4 digits. If it's 100 - 999, then it records it as 3 digits. If it's 10 - 99, it records as 2 digits. If it's 0 - 9, then it has to record it as a single digit.
Thanks
Answer:
Step-by-step explanation:
Find the complete question
Zelie planned for a square pool to have a side length of 28 ft but found that it needs to be 14 ft long to fit in her backyard. She found the change of scale below.
Which is Zelie’s error?
Zelie should have divided both numbers by 14.
Zelie should have written the ratio as 28/7.
Zelie should have written the ratio as 14/8.
Zelie should have subtracted 14 from both numbers.
Original length of pool = 28ft
If he found that it need to be 14ft longer then the actual measure = 14th
given equation is;
(28 - 7)/14 - 7 = 14/7
Scale constant = original length/actual length
Scale constant = 28/14
Scale constant = 2
Hence the scale constant is 2
According to the option, Zelei should have divided both numbers by 14.