Answer:
Explanation:
Using equation of pure torsion

where
T is the applied Torque
is polar moment of inertia of the shaft
t is the shear stress at a distance r from the center
r is distance from center
For a shaft with
Outer Diameter
Inner Diameter

Applying values in the above equation we get
x 
Thus from the equation of torsion we get

Applying values we get

T =829.97Nm
Answer:
true
Explanation:
the answer is true because if u don't have a valid license when operating a vehicle and you get pulled over you will get in trouble i know this because my parents got in trouble for it once
Answer:
# Program is written in python
# 22.1 Using the count method, find the number of occurrences of the character 's' in the string 'mississippi'.
# initializing string
Stringtocheck = "mississippi"
# using count() to get count of s
counter = Stringtocheck.count('s')
# printing result
print ("Count of s is : " + str(counter))
# 2.2 In the string 'mississippi', replace all occurrences of the substring 'iss' with 'ox
# Here, we'll make use of replace() method
# Prints the string by replacing iss by ox
print(Stringtocheck.replace("iss", "ox"))
#2.3 Find the index of the first occurrence of 'p' in 'mississippi'
# declare substring
substring = 'p'
# Find index
index = Stringtocheck.find(substring)
# Print index
print(index)
# End of program
Answer:
Percent Elongation = 52.72%
Percent Reduction in Area = 64%
Explanation:
First we find percent elongation:
Percent Elongation = {Final Gage Length - Initial Gauge Length/Initial Guage Length} x 100%
Percent Elongation = {(4.20 in - 2.75 in)/2.75 in} x 100%
<u>Percent Elongation = 52.72%</u>
Now, for the percent reduction in area:
Percent Reduction in Area = {Final Cross Sectional Area - Initial Cross Sectional Area|/Initial Cross Sectional Area Length} x 100%
Percent Reduction in Area = {π(0.3 in)² - π(0.5 in)²/π(0.5 in)²} x 100%
<u>Percent Reduction in Area = - 64%</u>
here, negative sign shows a decrease in area.