45.The following SAS program is submitted:
data work.test;
length city $20;
city='Paris';
city2=trim(city);
run;
Which one of the following is the length of the city2 variable?
a. 5
b. 6
c. 8
d. 20
SAS HELP: If the TRIM function returns a value to a variable that has not yet been assigned a length, by default the variable length is determined by the length of the first argument.