Which one of the following is the value of the DESCRIPTION variable?

The contents of the raw data file AMOUNT are listed below:
——–10——-20——-30
$1,234
The following SAS program is submitted:
data test;
infile ‘amount’;
input @1 salary 6.;
if _error_ then description = ‘Problems’;
else description = ‘No Problems’;
run;
Which one of the following is the value of the DESCRIPTION variable?
A. Problems
B. No Problems
C. ‘ ‘ (missing character value)
D. The value can not be determined as the program fails to execute due to errors.

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.