The following SASprogram is submitted: data work.flights; destination = 'cph';select(destination);
when('LHR') city ='London'; when('CPH') city = 'Copenhgen'; otherwise city = 'Other';end; run;
Which one of thefollowing is the value of the CITY variable?
A. Other B. CopenhC. Copenhagen
D. ' ' (missingcharacter value)