Answer:
The program is as follows:
i = 1
while(i<11):
j = 1
while(j<=i):
print('*', end = '')
j += 1
i += 1
print()
Explanation:
Initialize i to 1
i = 1
The outer loop is repeated as long as i is less than 11
while(i<11):
Initialize j to 1
j = 1
The inner loop is repeated as long as j is less than or equal i
while(j<=i):
This prints a *
print('*', end = '')
This increments j and ends the inner loop
j += 1
This increments i
i += 1
This prints a blank and ends the inner loop
print()
Answer:
For a gear train that would train that transform a counterclockwise input into a counterclockwise output such that the gear that is driven rotates three times when the driver rotates once, we have;
1) The number of gears in the gear train = 3 gears with an arrangement such that there is a gear in between the input and the output gear that rotates clockwise for the output gear to rotate counter clockwise
2) The speed ratio of the driven gear to the driver gear = 3
Therefore, we have;

Therefore, for a speed ratio of 3, the number of teeth of the driver gear, driving the output gear, must be 3 times, the number of teeth of the driven gear
Explanation:
Answer:
first is the parentheses, (3+2)=5 next is the exponent 5^2=25, next is the division 5 / 5 = 1, then the multiplication 4*1=4 and then you add 4+25=29. so the answer is 29.
Answer:
a) 53 MPa, 14.87 degree
b) 60.5 MPa
Average shear = -7.5 MPa
Explanation:
Given
A = 45
B = -60
C = 30
a) stress P1 = (A+B)/2 + Sqrt ({(A-B)/2}^2 + C)
Substituting the given values, we get -
P1 = (45-60)/2 + Sqrt ({(45-(-60))/2}^2 + 30)
P1 = 53 MPa
Likewise P2 = (A+B)/2 - Sqrt ({(A-B)/2}^2 + C)
Substituting the given values, we get -
P1 = (45-60)/2 - Sqrt ({(45-(-60))/2}^2 + 30)
P1 = -68 MPa
Tan 2a = C/{(A-B)/2}
Tan 2a = 30/(45+60)/2
a = 14.87 degree
Principal stress
p1 = (45+60)/2 + (45-60)/2 cos 2a + 30 sin2a = 53 MPa
b) Shear stress in plane
Sqrt ({(45-(-60))/2}^2 + 30) = 60.5 MPa
Average = (45-(-60))/2 = -7.5 MPa
Answer:
b. False
Explanation:
A centimeter is a hundredth of a meter. This means 1/100 ,1 cm = 0.01 m
A kilo is 1000 grams.
The first answer is false because a hundredth isnot written well.
The second statement is false because the comparison given is of different units of measure. For distance is meters where as for weight is kilograms.