SAS OnlineTutor HomeFAQ PageSuggested Learning PathsContents+Searchback||next

Quiz: Enhancing HTML Tabular Reports

Select the best answer for each question and click Score My Quiz.

  1. Which TABLE statement option changed the background color of the top-left cell?

      Min Max
    Destination   81 154
    Copenhagen Boarded
    Transfer 5 21

     a.    / box={style={background=cxCCEEDD}}
     b.    / corner={style={background=cxCCEEDD}}
     c.    / fill={style={background=cxCCEEDD}}
     d.    / null={style={background=cxCCEEDD}}

  2. Which statement changed the background color of the Destination cell?

      Min Max
    Destination   81 154
    Copenhagen Boarded
    Transfer 5 21

     a.   class dest / style={background=cxCCEEDD};
     b.   classlev dest / style={background=cxCCEEDD};
     c.   keyword dest / style={background=cxCCEEDD};
     d.   var dest / style={background=cxCCEEDD};

  3. Which statement changed the background color of the statistics headings?

      Min Max
    Destination   81 154
    Copenhagen Boarded
    Transfer 5 21

     a.   class dest / style={background=cxCCEEDD};
     b.   classlev dest / style={background=cxCCEEDD};
     c.   keyword dest / style={background=cxCCEEDD};
     d.   var dest / style={background=cxCCEEDD};

  4. Which statement changed the background color of the Copenhagen cell?

      Min Max
    Destination   81 154
    Copenhagen Boarded
    Transfer 5 21

     a.   class dest / style={background=cxAACCBB};
     b.   classlev dest / style={background=cxAACCBB};
     c.   keyword dest / style={background=cxAACCBB};
     d.   var dest / style={background=cxAACCBB};

  5. Which statement changed the background color of the Boarded and Transfer cells?

      Min Max
    Destination   81 154
    Copenhagen Boarded
    Transfer 5 21

     a.   class boarded transfer / style={background=cxBBCCAA};
     b.   classlev boarded transfer / style={background=cxBBCCAA};
     c.   keyword boarded transfer / style={background=cxBBCCAA};
     d.   var boarded transfer / style={background=cxBBCCAA};

  6. Which form of the STYLE= option caused the background of the Boarded cell to be inherited from the Copenhagen cell?

      Min Max
    Destination   81 154
    Copenhagen Boarded
    Transfer 5 21

     a.   style={background=parent}
     b.   style={parent}
     c.   style=<parent>
     d.   style=parent

  7. To change the appearance of data cells, add the STYLE= option to the:

     a.   PROC FORMAT statement
     b.   PROC TABULATE statement
     c.   LABEL statement
     d.   TABLE statement

  8. Which form of the STYLE= option changed the text color and weight of the Transfer data cells?

      Min Max
    Destination   81 154
    Copenhagen Boarded
    Transfer 5 21

     a.  
    table dest*(boarded
          transfer*{style={foreground=cxFFFFFF
                             font_weight=bold}}),min max;
     b.  
    table dest*(boarded
          transfer={style={foreground=cxFFFFFF
                             font_weight=bold}}),min max;
     c.  
    table dest*(boarded
          transfer{style={foreground=cxFFFFFF
                             font_weight=bold}}),min max;
     d.  
    table dest*(boarded
          transfer / style={foreground=cxFFFFFF
                             font_weight=bold}),min max;

  9. To add traffic-lighting to specific cell values, create a user-defined format and associate it with a variable by applying the STYLE= option in the . . .

     a.   PROC FORMAT statement
     b.   PROC TABULATE statement
     c.   LABEL statement
     d.   TABLE statement

  10. To have text and images appear correctly together, enclose mixed text and image strings in . . .

     a.   division tags   <DIV>...</DIV>
     b.   layer tags   <LAYER>...</LAYER>
     c.   paragraph tags   <P>...</P>
     d.   span tags   <SPAN>...</SPAN>



back||next

Terms of Use & Legal Information | Privacy Statement