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:
(a). the resultant force in the direction of the freestream velocity is termed the drag and the resultant force normal to the freestream velocity is termed the lift
Explanation:
When a fluid flows around the surface of an object, it exerts a force on it. This force has two components, namely lift and drag.
The component of this force that is perpendicular (normal) to the freestream velocity is known as lift, while the component of this force that is parallel or in the direction of the fluid freestream flow is known as drag.
Lift is as a result of pressure differences, while drag results from forces due to pressure distributions over the object surface, and forces due to skin friction or viscous force.
Thus, drag results from the combination of pressure and viscous forces while lift results only from the<em> pressure differences</em> (not pressure forces as was used in option D).
The only correct option left is "A"
(a). the resultant force in the direction of the freestream velocity is termed the drag and the resultant force normal to the freestream velocity is termed the lift
Answer:
Option (d) 2 min/veh
Explanation:
Data provided in the question:
Average time required = 60 seconds
Therefore,
The maximum capacity that can be accommodated on the system, μ = 60 veh/hr
Average Arrival rate, λ = 30 vehicles per hour
Now,
The average time spent by the vehicle is given as
⇒ 
thus,
on substituting the respective values, we get
Average time spent by the vehicle = 
or
Average time spent by the vehicle = 
or
Average time spent by the vehicle = 
or
Average time spent by the vehicle =
hr/veh
or
Average time spent by the vehicle =
min/veh
[ 1 hour = 60 minutes]
thus,
Average time spent by the vehicle = 2 min/veh
Hence,
Option (d) 2 min/veh
Answer:
Go to explaination for the details of the answer.
Explanation:
In order to determine the lifetime (75 years) chronic daily exposure for each individual, we have to first state the terms of our equation:
CDI = Chronic Daily Intake
C= Chemical concentration
CR= Contact Rate
EFD= Exposure Frequency and Distribution
BW= Body Weight
AT = Average Time.
Having names our variables lets create the equations that will be used to derive our answers.
Please kindly check attachment for details of the answer.