Radiation Exposure : 25.0 points
what is your question??
Radiation exposure is not good for a life form. Radiation exposure is based on lifetime accumulation of such radiation and can cause health risks over time. A famous health risk known globally is cancer. However, very low radiation exposure can be slightly beneficial as it impacts metabolic processes of a life form. This is known as radiation hormesis. You listed radiation exposure as 25 points. Do you have a scale or graph to supplement, so that we can determine if your listed radiation exposure is dangerous or not?
that is pset3 ques of MITx: 6.00x Introduction to Computer Science and Programming and the correct answer is : def f(x): import math return 10*math.e**(math.log(0.5)/5.27 *x) def radiationExposure(start, stop, step): result = 0.0 while start < stop: result=result+f(start)*step start=start+step return result
Join our real-time social learning platform and learn together with your friends!