Hi.
I believe the formula for R when you have the voltage and current is:
V/I = R
Plugging in the numbers:
220/4 = 55
The answer is the second option, 55.
X=(-4) or X= 4
add 112 to both sides
divide both sides by 7
then take the square root of 16
429 ÷ 39= 11
11 ÷ 2= 5.5 (5 1/2)
It takes 5 1/2 weeks to produce 429 wetsuits
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
It is
hypotenuses^2 = base^2 + perpendicular^2
hope it helped