To Exam Info

Final Exam Review Guide

Format of Final

Know for Final

Bring to Final

  1. One page (both sides) of notes.
     
  2. Cascading Style Sheets (CSS) Reference.
     
  3. The following examples:
     

Terms and Concepts

HTML Special Characters

HTML Tags

HTML Attributes

Cascading Style Sheets

JavaScript

Be Able To:

  1. Answer short answer questions.
     
  2. Given some HTML source code indicate how it would be displayed in a browser.
     
  3. Given part of a browser page, give the HTML source code that produced it.
     
  4. Apply a CSS inline style to an HTML element.
     
  5. Write a document-level style for a web page.
     
  6. Be able to write the rgb color code, given the color name, for the colors red (rgb(255,0,0)), green (rgb(0,255,0)), blue (rgb(0,0,255)), black (rgb(0,0,0)), white (rgb(255,255,255)), gray (rgb(128,128,128)), yellow (rgb(255,255,0)), cyan (rgb(0,255,255)), magenta (rgb(255,0,255)), maroon (rgb(128,0,0)) and navy (rgb(0,0,128)).
     
  7. Use rgb color codes in inline, document-level, or external styles.
     
  8. Insert action and method attributes in a form tag to show where and how the values in controls are submitted to the server.
     
  9. Add an input tag with class=submit to a page that will cause the page to be submitted to the server.
     
  10. Add a drop down menu to a page (<select> tag).
     
  11. Add a slide show to a page, either sequential or random.
     
  12. Given a page containing HTML, CSS, and/or JavaScript, find errors contained on it.
     
  13. Write a JavaScript event handler that
     
    1. Inputs values from a dynamic webpage, computes a value, displays the result in a textbox.
       
    2. Displays an image on a page, either static, or determined by calculations.
       
    3. Displays a slideshow, random or sequential.

  14. Explain what absolution positioning is using div tags and how this helps control the layout on a page.
     
  15. Given and HTML and CSS page that uses absolute positioning, predict what the layout of the page will look like.
     
  16. Given a page layout, write the HTML and CSS code that produced it using absolute positioning.
     
  17. Explain the difference between client side processing and server side processing.
     
  18. Identify the steps needed for the browser to retrieve a page from a server in the internet.