Answer:
power = 49.95 W
and it is self locking screw
Explanation:
given data
weight W = 100 kg = 1000 N
diameter d = 20mm
pitch p = 2mm
friction coefficient of steel f = 0.1
Gravity constant is g = 10 N/kg
solution
we know T is
T = w tan(α + φ )
...................1
here dm is = do - 0.5 P
dm = 20 - 1
dm = 19 mm
and
tan(α) =
...............2
here lead L = n × p
so tan(α) =
α = 3.83°
and
f = 0.1
so tanφ = 0.1
so that φ = 5.71°
and now we will put all value in equation 1 we get
T = 1000 × tan(3.83 + 5.71 )
T = 1.59 Nm
so
power =
.................3
put here value
power =
power = 49.95 W
and
as φ > α
so it is self locking screw
Answer:
# Initialize a dictionary with the keys
contestants = {"Darci Lynne":0, "Angelica Hale":0, "Angelina Green":0};
# Repeatedly prompt the user for a contestant name to vote for
while True:
# Prompting user for contestant name
cName = input("Enter contestant name to vote: ");
# Checking for Done
if cName.lower() == "done":
break;
# Checking in dictionary
if cName in contestants.keys():
# Updating vote value
contestants[cName] += 1
# New entry
else:
contestants[cName] = 1
# Printing header
print("\n%-20s %-15s\n" %("Contestant Name", "Votes Casted"))
# Printing results
for contestant in contestants:
print("%-23s %-15d" %(contestant, contestants[contestant]))
Answer:
Scientists observe the world, while engineers focus on creating. While both fields do involve observation and analysis, engineering mainly deals with creating and working on already existing creations, while scientists work with things in nature.
C, I took the test already.