Q1
Single choice
The following SAS program is submitted:
data work.new;
length word $7;
amount = 4;
it amount = 4 then word = `FOUR';
else if amount = 7
then word = `SEVEN';
else word = `NONE!!!';
amount = 7;
run;
What are the values of the AMOUNT and WORD variables in SAS dataset work.new?