Question 86

Given the SAS data set WORK.ORDERS:

Ship_date is a numeric variable containing a SAS data value. A programmer would like to create a new character variable Ship_date-char that represents the ship date as a character string, such as "February 2,2009' Which statement will create the new variable Ship_date_char as a character value with a format such as "February 2, 2009"?
  • Question 87

    The following SAS program is submitted:
    data revenue;
    set year_1;
    var1 = mdy(1,15,1960);
    run;
    Which one of the following values does the variable named VAR1 contain?
  • Question 88

    You're attempting to read a raw data file and you see the following messages displayed in the SAS Log:

    What does it mean?
  • Question 89

    The following SAS program is submitted:
    data one;
    addressl = '214 London Way';
    run;
    data one;
    set one;
    address = tranwrd(address1, 'Way', 'Drive'); run;
    What are the length and value of the variable ADDRESS?
  • Question 90

    The following SAS program is submitted:

    The program fails execution due to syntax errors.
    What is the cause of the syntax error?