?
Case-Based Critical Thinking Questions
?
Case 3-1
Alex's woodworking shop is trying to design a web page with Cascading Style Sheets (CSS). Alex would like create the new design based on the latest elements and styles from Hypertext Markup Language (HTML) and CSS. He has created a few sample pages:
home.htm
---describes the business and contact information
Product.htm
---displays a list of product descriptions
Custom.htm
---displays a list of custom products
?Alex's product style rules can be imported into a single file by adding the command _____.
A. ?@import url (css.product);
B. ?@import url (product.css);
C. ?@import css (product.css);
D. ?@import (type: css url: product);
Answer: B
You might also like to view...
Java has a way of officially hiding details of a class definition. To hide details, you mark them as _________.
(a) public (b) protected (c) private (d) all of the above
To add a new column to the worksheet, right-click a column heading and click ____________________.
Fill in the blank(s) with the appropriate word(s).
An Excel name can be used to reference a cell, cell range, or table
Indicate whether the statement is true or false.
After the following statements execute, what are the contents of matrix?int matrix[3][2];int j, k;for (j = 0; j < 3; j++) for (k = 0; k < 2; k++) matrix[j][k] = j + k;
A. 0 0 1 1 2 2 B. 0 1 2 3 4 5 C. 0 1 1 2 2 3 D. 1 1 2 2 3 3