What is output?

The following SAS program is submitted, creating the SAS data set ONE:
data one;
infile ‘file specification’;
input num chars$;
run;
ONE
NUM CHAR
——- ———
1 23
3 23
1 77
The following SAS program is submitted:
proc print data = one;
where char = 23;
run;
What is output?
A. NUM CHAR
1 77
2
B. NUM CHAR
1 23
3 23
C. NUM CHAR
1 23
3 23
1 77
D. No output is generated.

Download Printable PDF. VALID exam to help you PASS.

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.