A00-231 Exam Question 31

Consider the data step:

Which of the following assignment statements for variable group are functionally equivalent to the original statement used in the above data step?
  • A00-231 Exam Question 32

    Given the raw data record in the file phone.txt:

    Which SAS statement completes the program and results in a value of "James Stevens" for the variableFullName?
  • A00-231 Exam Question 33

    A raw data file is listed below:
    RANCH,1250,2,1,Sheppard Avenue,"$64,000"
    SPLIT,1190,1,1,Rand Street,"$65,850"
    CONDO,1400,2,1.5,Market Street,"80,050"
    TWOSTORY,1810,4,3,Garris Street,"$107,250"
    RANCH,1500,3,3,Kemble Avenue,"$86,650"
    SPLIT,1615,4,3,West Drive,"94,450"
    SPLIT,1305,3,1.5,Graham Avenue,"$73,650"
    The following SAS program is submitted using the raw data file as input:
    data work.condo_ranch;
    infile 'file-specification' dsd;
    input style $ @;
    if style = 'CONDO' or style = 'RANCH' then input sqfeet bedrooms baths street $ price : dollar10.; run; How many observations does the WORK.CONDO_RANCH data set contain?
  • A00-231 Exam Question 34

    The following SAS program is submitted:
    libname sasdata '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?
  • A00-231 Exam Question 35

    The following program is submitted:
    proc contents data=_all_;
    Which statement best describes the output from the submitted program?