Question 12 :

 The following SAS program is submitted:

 data work.accounting;    length jobcode $ 12;    set work.department;run;

 The Work.Department SAS data set contains a character variable named jobcode with a length of 5. Which of the following is the length of the variable jobcode in the output data set?

  1. 5
  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 : 3

 Exp : The LENGTH statement enables you to specify the length of a character variable. Since the LENGTH statement appears before the SET statement, SAS will set the length of jobcode

 to 12.

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