Answer:
A working with machinery be a common type of caught-in and caught-between hazard is described below in complete detail.
Explanation:
“Caught in-between” accidents kill mechanics in a variety of techniques. These incorporate cave-ins and other hazards of tunneling activity; body parts extracted into unconscious machinery; reaching within the swing range of cranes and other installation material; caught between machine & fixed objects.
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:
(a) E = 0 N/C
(b) E = 0 N/C
(c) E = 7.78 x10^5 N/C
Explanation:
We are given a hollow sphere with following parameters:
Q = total charge on its surface = 23.6 μC = 23.6 x 10^-6 C
R = radius of sphere = 26.1 cm = 0.261 m
Permittivity of free space = ε0 = 8.85419 X 10−12 C²/Nm²
The formula for the electric field intensity is:
E = (1/4πεo)(Q/r²)
where, r = the distance from center of sphere where the intensity is to be found.
(a)
At the center of the sphere r = 0. Also, there is no charge inside the sphere to produce an electric field. Thus the electric field at center is zero.
<u>E = 0 N/C</u>
(b)
Since, the distance R/2 from center lies inside the sphere. Therefore, the intensity at that point will be zero, due to absence of charge inside the sphere (q = 0 C).
<u>E = 0 N/C</u>
(c)
Since, the distance of 52.2 cm is outside the circle. So, now we use the formula to calculate the Electric Field:
E = (1/4πεo)[(23.6 x 10^-6 C)/(0.522m)²]
<u>E = 7.78 x10^5 N/C</u>
C my friend 20 characters suck