What is the result?
Given the raw data file AMOUNT:
—-I—- 10—I—-20—I—-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;
What is the result?
A . The value of the DESCRIPTION variable is No Probl.
B. The value of the DESCRIPTION variable is Problems.
C. The value of the DESCRIPTION variable is No Problems.
D. The value of the DESCRIPTION variable can not be determined.
Answer: B
Latest A00-231 Practice Questions with 262 Q&As
Updated Study Material | Instant Download | Detailed Answers and Explanations
Subscribe
Login
0 Comments