Chapter 1 Key Terms

123456789101112131415
Across
  1. 2. A comment that occupies only a single line or part of a line; created by adding two slashes ( // ) before the comment text
  2. 5. A variable or a literal contained in an expression
  3. 7. A set of characters or symbols that defines a document’s logical structure, indicating the meaning or function of each item in the document
  4. 8. Code that tells a browser what to do in response to a specific event on a specific element.
  5. 9. A comment that contains multiple lines of code; created by adding /* to the start of the first line that you want included in the block and */ after the last character in the block.
  6. 10. In a computer program, a logical unit composed of individual statements, which is used to perform a specific task
  7. 11. Using the var keyword to create a variable.
  8. 14. Programming written in a scripting language that is executed from a web server
  9. 15. A complementary language to HTML, developed for specifying the appearance of web page elements.
Down
  1. 1. A web page element that contains a reference to a specific web page that you can click to open that page.
  2. 3. The values a program stores in computer memory
  3. 4. A generic term for many types of names and addresses on the web, including URLs
  4. 6. The operator ( = ) used to assign the value on the right side of an expression to the variable on the left side of the expression.
  5. 12. To assign a specific value to a variable when declaring it by adding an equal sign after the variable name, followed by the value you’re assigning to the variable
  6. 13. A client-side scripting language that allows web page authors to develop interactive web pages and sites