Q14
Single choice
The following SAS program is submitted.
filename sales ('external-file1' 'external-file2'); data new;
infile sales;
input date date9. company $ revenue;
run;
Which one of the following is the result of including the FILENAME statement in this program?