| RDCR08301 Exam |
| RDCR08301 - Exam Information |
| Question of the day |
You create the following custom function to convert Celsius to Fahrenheit or vice versa depending on an argument passed to the function: Function(): Global StringVar CurrentTempType; Global NumberVar DegreeAmount; If CurrentTempType = "F" then ((DegreeAmount - 32) * 0.55) else if CurrentTempType = "C" then ((Degreeamount * 1.8) + 32); EndIf: Which change must you make to the code to successfully save the function?
Answer(s)
Change the variable scope.