Answer:
D
Explanation:
You don't want to crash into a construction vehicle.
Answer: the average velocity decreases
Explanation:
From the provided data we have:
Vessel avg. diameter[mm] number
Aorta 25.0 1
Arteries 4.0 159
Arteioles 0.06 1.4*10^7
Capillaries 0.012 2.9*10^9
from the information, let
be the mass flow rate,
is density, n number of vessels, and A is the cross-section area for each vessel
the flow rate is constant so it is equal for all vessels,
The average velocity is related to the flow rate by:

we clear the side where v is in:

area is π*R^2 where R is the average radius of the vessel (diameter/2)
we get:

you can directly see in the last equation that if we go from the aorta to the capillaries, the number of vessels is going to increase ( n will increase and R is going to decrease ) . From the table, R is significantly smaller in magnitude orders than n, therefore, it wont impact the results as much as n. On the other hand, n will change from 1 to 2.9 giga vessels which will dramatically reduce the average blood velocity
Answer:
a) W = 25.5 lbf
b) W = 150 lbf
Explanation:
Given data:
Mass of astronaut = 150 lbm
local gravity = 5.48 ft/s^2
a) weight on spring scale
it can be calculated by measuring force against local gravitational force which is equal to weight of body
W = mg

b) As we know that beam scale calculated mass only therefore no change in mass due to variation in gravity
thus W= 150 lbf
Answer:
Companies are combining their online business activities with their existing physical presence in order to lower costs of their operations. When both these things are combined labor costs are reduced because with online presence the company has to have limited number of branches, inventory costs are reduced because additional inventories for every physical outlet is not required and delivery costs are reduced because now company don't have to supply the things to all the outlets on regular basis.
Trust of the people is also improved because mostly people are reluctant to order from the brands that only have their online store and donot have any physical presence. Value added services are provided by a company who have both online and offline presence like home delivery and customized offerings.
Answer:
- def median(l):
- if(len(l) == 0):
- return 0
- else:
- l.sort()
- if(len(l)%2 == 0):
- index = int(len(l)/2)
- mid = (l[index-1] + l[index]) / 2
- else:
- mid = l[len(l)//2]
- return mid
-
- def mode(l):
- if(len(l)==0):
- return 0
-
- mode = max(set(l), key=l.count)
- return mode
-
- def mean(l):
- if(len(l)==0):
- return 0
- sum = 0
- for x in l:
- sum += x
- mean = sum / len(l)
- return mean
-
- lst = [5, 7, 10, 11, 12, 12, 13, 15, 25, 30, 45, 61]
- print(mean(lst))
- print(median(lst))
- print(mode(lst))
Explanation:
Firstly, we create a median function (Line 1). This function will check if the the length of list is zero and also if it is an even number. If the length is zero (empty list), it return zero (Line 2-3). If it is an even number, it will calculate the median by summing up two middle index values and divide them by two (Line 6-8). Or if the length is an odd, it will simply take the middle index value and return it as output (Line 9-10).
In mode function, after checking the length of list, we use the max function to estimate the maximum count of the item in list (Line 17) and use it as mode.
In mean function, after checking the length of list, we create a sum variable and then use a loop to add the item of list to sum (Line 23-25). After the loop, divide sum by the length of list to get the mean (Line 26).
In the main program, we test the three functions using a sample list and we shall get
20.5
12.5
12