Final answer:
The correct statement that converts the values of the numeric variable SiteNum to character values when creating the variable Location is option b: Location=Dept||'/'||put(SiteNum,4).
Step-by-step explanation:
The correct statement that converts the values of the numeric variable SiteNum to character values when creating the variable Location is option b. The correct statement is Location=Dept||'/'||put(SiteNum,4).
In this statement, the put function is used to convert the numeric value to a character value. The first argument of the put function is the value to be converted, which is SiteNum. The second argument is the format that specifies the length of the character variable, which is 4 in this case.
Therefore, the correct statement to convert the values of SiteNum to character values and create the variable Location is option b.