Correct answer is (b) False
For explanation I would say: We can write ‘omitNaN’ within the sum function so that while computing sum, the function ignores every NaN element present within the input vector.
Eg: A=[1,2,NaN];sum(A,’omitNaN’)- This will return 3 as answer.