1/31/06 Notes

To Notes

Summary for HCI 201 -- 1/31/06

 

Review Questions

  1. What is a hex number?
    Ans: A base 16 number.

  2. How are the hex digits greater than 9 represented?
    Ans: The digits for 10, 11, 12, 13, 14 and 15 are represented by A, B, C, D, E and F, respectively.

  3. What does the hex number 39 represent?
    Ans: 3 represents the number of sixteens and 9 is the number of ones: 2 x 16 + 9 = 57.

  4. Which number is bigger for each pair of hex numbers?
    6A 3E   95 B0   3A 30   A4 A1
    Ans: 6A   B0   3A   A4.

  5. What colors do the following HTML color codes represent? Check them in FrontPage using the Split View: type them into the bgcolor attribute of the body tag. To refresh the screen after typing changes in the HTML, click in the design window.
    #FFFF00   #FF00FF   #00FFFF   #800000   #008000
    #000080   #FF8000   #FF0080   #603000
    Ans: Yellow, magenta, aqua, maroon, green, navy, orange, blueish red, brown.

  6. Change the background color of Page A to black and the text color to white. What is the HTML code?
    Ans: <body bgcolor="black" text="white">

  7. Repeat question 6 using hex color codes.
    Ans: <body bgcolor="#000000" text="#FFFFFF">

  8. Which color represents each of the following in the Western World?
    enthusiasm   calmness   luxury   happiness   elegance   truth   passion   purity
    Ans: Orange, green, purple, yellow, black, blue, red, white.

  9. How do you do each of the following in FrontPage?

    1. Add a layer to a webpage?
      Ans: Insert >> Layer.

    2. Move a layer?
      Ans: Click on the nametag, then drag the layer.

    3. Resize a layer?
      Ans: Drag one of the resizing handles.

    4. Add an image to a layer?
      Ans: Insert >> Picture >> From File. Then select an image in the images folder of the FrontPage website.

    5. Put text on top of an image?
      Ans: Create a new layer and drag it on top of the image. Then add text to the new layer.

    6. Add a table to a webpage?
      Ans: Table >> Insert >> Table.

    7. Remove the border from a table?
      Ans: Right click on the table and select Table Properties. Then change the border to 0.

    8. Prevent the table from resizing as a percentage of the browser size.
      Ans: Right click on the table and select Table Properties. Then check the In Percent radio button.

  10. What is the HTML tag for each of the following?

    1. Layer
      Ans: <div>

    2. Table
      Ans: <table>

    3. Table Row
      Ans: <tr>

    4. Table Cell
      Ans: <td>

  11. How do you do each of the following in MS Paint?

    1. Resize an image; Crop an image
      Ans: See the 1/26 Course Notes.

 

More about Colors

 

Creating a WordArt Banner

 

Work on Ex5 (Collage)