Answer:
<em>Technician B says that a ratchet is used to loosen fasteners that are very tight.</em>
Explanation:
A ratchet is a common wrench device with a fastener component. A ratchet wrench is an essential tool that is used to fasten or loosen nuts and bolts.
Answer:I am so sorry but here are no questions, thanks for the points
Explanation:Have a nice day
Answer:
This is a function written in Python Programming Language to check whether a given number is prime or not.
def is_prime(n):
if (n==1):
return False
elif (n==2):
return True;
else:
for x in range(2,n):
if(n % x==0):
return False
return True
print(is_prime(9))
Explanation:
<h2 />