Quiz title : Set - 001 - Part 02
Question 1 of 9



The following SAS program is submitted:;

data work.staff; 
  JobCategory = 
"FA";
  JobLevel = 
"1"
  Jobcategory = Jobcategory || JobLevel;
run;

Which one of the following is the value of the variable JOBCATEGORY in the output data set?