Answer:
B. Based on the allowable shear stress, but the allowable normal stress should always be checked to be sure it is not exceeded
Explanation:
Shear stress is analyzed to determine the shear forces along the lenght of the beam. This is represented in a shear force diagram. The beam cross sectional design is determined in such a way as to minimize the shear stress. Allowable normal stress should always be checked in a structure if failure is to be prevented.
Answer:
- for i in range(0,11):
- print("Number: " + str(i) + " | Multiplied by 2: " + str(i * 2) + " | Multiplied by 10: " + str(i*10))
Explanation:
Firstly, create a for loop (Line 1). Since we intend to print 0 through 10, we need values 0 and 11 as parameters of range function. The range(0,11) will create a range of values 0 - 10 (11 not inclusive). The for loop will iterate through the range of values 0 - 11 one by one and then print the original value followed by value multiplied by 2 and also the value multiplied by 10 (Line 2).