194k views
3 votes
"What result would you expect from submitting this step?

proc print data=work.newsalesemps
run;"
a) An error message
b) A printed report of the data
c) A blank page
d) A warning message

1 Answer

4 votes

Final answer:

Submitting 'proc print data=work.newsalesemps run;' in SAS is expected to yield a printed report of the data contained within the 'work.newsalesemps' dataset.

Step-by-step explanation:

When you submit proc print data=work.newsalesemps run; in SAS (Statistical Analysis System), you would expect to receive b) A printed report of the data. This command is used to print the contents of a SAS dataset, in this case, 'work.newsalesemps'. If the dataset exists and there are no syntax errors or other issues with the code or SAS environment, SAS will produce a report listing all observations (rows) and variables (columns) within the specified dataset.

User Troy Morehouse
by
8.2k points