Question 63 : 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?

  1. The value of the DESCRIPTION variable is No Probl.
  2. Get all Questions and Answer from here
  3. You need to have paid subscription to access all questions
  4. Thanks for considering SAS Certification Material

 Correct Answer 2 :

 Exp :

You can access to full explanation to question and answer from this page.