Answer:
Explanation:
Thermal reservoir:
It is the body which have infinite amount of heat capacity and store large amount of heat.The temperature of thermal reservoir is constant and does not change with time.The temperature of thermal reservoir is not change even heat is going out from reservoir or heat going inside the reservoir.The temperature of thermal reservoir remains constant and does not depend on the surroundings.
Answer:
The solution code is written in Python:
- def convertCSV(number_list):
- str_list = []
- for num in number_list:
- str_list.append(str(num))
-
- return ",".join(str_list)
- result = convertCSV([22,33,44])
- print(result)
Explanation:
Firstly, create a function "convertCSV" with one parameter "number_list". (Line 1)
Next, create an empty list and assign it to a new variable <em>str_list</em>. (Line 2)
Use for-loop to iterate through all the number in the <em>number_list</em>.(Line 4). Within the loop, each number is converted to a string using the Python built-in function <em>str() </em>and then use the list append method to add the string version of the number to <em>str_list</em>.
Use Python string<em> join() </em>method to join all the elements in the str_list as a single string. The "," is used as a separator between the elements (Line 7) . At the end return the string as an output.
We can test the function by calling the function and passing [22,33,34] as an argument and we shall see "22,33,44" is printed as an output. (Line 9 - 10)
Answer:
Calculate the individual residential lifetime cancer risk.
Risk = Potential factor x CDI …… (1)
Calculate the value of C
C = 
t = d / v
t = 150 miles / 2 mile per hrs.
t = 75 hrs
t = 75/24
t = 3.13 days
Substitute the obtained value in (2).
C = 
C = 0.72 x e^(-0.1*3.13)
C = 0.72 x 0.7313
C = 0.526 mg/L
Substitute the obtained value in (1).
Risk = Potential factor x CDI
Risk = 0.30kg.d/mg x 0.526mg/L x 2L/d x 350day/365days
Risk = 0.3026
Answer:
Explanation:
Cylinders shall be kept far enough away from the actual welding or cutting operation so that sparks, hot s lag, or flame will not reach them. When this is impractical, fire resistant shields shall be provided. Cylinders shall be placed where they cannot become part of an electrical circuit.
Answer:
the compound light microscope
Explanation:
The stereomicroscope is to study section to study the entire objects in three dimensions at low magnification. A Compound light microscope is used for small or thinly sliced objects under higher magnification than stereomicroscope.