Answer:
A root-type supercharger works similar to that of an air pump. It pumps air into the intake of the engine. Within the engine cylinder, the compression of the air-fuel mixture takes place. A centrifugal supercharger, works like a turbo, compresses the air in it and then delivers it to the engine.
The pressure inside the can upon cooling is 0.4 atm.
<u>Explanation:</u>
Given -
Initial Temperature, T1 = 908°C = 908 + 273 K = 1181 K
Final Temperature, T2 = 208°C = 208 + 273 K = 481 K
Pressure upon cooling, P2 = ?
Using Gay Lussac's law:
P1/T1 = P2/T2
P2 = P1 X T2 / T1
P2 = 1 atm X 481 / 1181
P2 = 0.4 atm
Therefore, the pressure inside the can upon cooling is 0.4 atm.
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:
C: Stop before entering the pedestrian crosswalk.
Explanation: