The following SAS program is submitte...
The following SAS program is submitted:
data names
title=' HR'
if title=' HR' then Division =' Human Resources'
else if title='IT' then
Division =' Information Technology'
else Division ='unknown'
Run
Which one of the following represents the value of the variable Division in the output data set? ( )