By admin | September 21, 2009

SAS Certified Base Programmer 123 Questions (66)

The following SAS program is submitted:

libnamesasdata 'SAS-data-library';
data test;
    set sasdata.chemists (keep = job_code);
    if job_code = 'chem3'
        then description = 'Senior Chemist';
run;

The variable JOB_CODE is a character variable with a length of 6 bytes.

Which one of the following is the length of the variable DESCRIPTION in the output data set?

A. 6 bytes
B. 8 bytes
C. 14 bytes
D. 200 bytes

One comment | Add One

  1. admin - 09/21/2009 at 10:56 am

    C

Leave a Comment

Leave a Reply

Your email address will not be published.