Question 24:

 The following SAS program is submitted:

 data test; 

 input country $8. date mmddyy10.;

 cards;

 Germany 12/31/2000France 01/32/2001;

 run;

 Which one of the following is the value of the variable _ERROR_ when the variable _N_ has a value of 2?

  1. 0
  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 : _N_ and _ERROR_ are automatic variables that can be used for DATA step processing but that are not written to the output data set. _N_ counts the number of times that the DATA

 step begins to execute, and _ERROR_ signals the occurrence of an error that is caused by the data during execution.

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