Which of the following lines should be inserted to complete the above code?
val = mx_sm
return val
mx_sm = val
return mx_sm
View Answer
Correct Answer: C — mx_sm = val
Explanation:
The line "mx_sm = val" should be inserted to complete the above code.
