15) Consider following piece of code
on error resume next
val=DataTable("ParamName",dtGlobalSheet)
if err.number 1 then
'Parameter does not exist
else
'Parameter exists
end if
Code highlighted above is not logically correct. Select the correct code from the options
Provided