Advanced Concepts in HTML: Mid-Session Quiz


Please complete all of the following questions before submitting the quiz. Unanswered questions will be scored as incorrect answers. Take your time and relax. For each question, make a selection that best answers the question.

Please enter your SS # with no dashes (-). Example 358551623:


  1. True or False? The CGI specification provides a standard for external gateway programs to interface with information servers such as HTTP servers.

    True
    False


  2. CGI stands for

    Corporate Gateway Interface
    Completely Graphical Interface.
    Cute, Graphical Interface.
    Common Gateway Interface.


  3. Which of the following is NOT a FORM tag?

    INPUT
    OUTPUT
    SELECT
    TEXTAREA


  4. True or False? Each document can only contain one set of FORM tags.

    True
    False


  5. True or False? The server automatically handles the processing of a form.

    True
    False


  6. The stream of data received by the CGI program looks like

    name=value&name2=value2&name3=value3...
    name=value$name2=value2$name3=value3...
    value=name@value2=name2@value3=name3...
    None of the above


  7. True or False? The ISINDEX tag allows you to automatically index your HTML documents for the purpose of doing full text searches.

    True
    False


  8. The ISINDEX search strings are handed to the CGI program through

    the command line argument.
    an act of God.
    STDIN.
    the CONTENT_LENGTH


  9. The ISMAP directive is

    a stand-alone tag.
    used in conjunction with the IMG SRC tag.
    generates a visible, overlayed coordinate system on a sourced image.
    creates a blue outline around the image.


  10. The HTML markup for implementing an ISMAP image looks like :

    <A HREF="http://hostname/path_to_imagemap/path_to_the_mapfile"><IMG SRC="imagemap_example.gif" ISMAP></A>
    <A ISMAP="imagemap.cgi/imagemap_example.map"><IMG SRC="imagemap_example.gif"></A>
    <A HREF="imagemap.cgi/imagemap_example.map"><IMAGEMAP="imagemap_example.gif"></A>