INTERMEDIATE WEB DEVELOPMENT Name: Nadia Ghasedi

advertisement
INTERMEDIATE WEB DEVELOPMENT
Name: Nadia Ghasedi
Orientation Quiz 1: Course Introduction
1.
What are the prerequisite skills (i.e., will not be taught) for this course?







2.
hand coding html using notepad/simpletext
creating and maintaining a website using the SFTP/SecureFX
creating and formatting a web page
inserting graphics
setting up hyperlinks
creating lists and tables
formatting text using either in-line or embedded style
What is the penalty for assignments that are submitted after the due date?
Assignments submitted within one day after the due date will receive a 10% reduction.
No assignments will be accepted one day after the due date. The final project MUST
NOT be late.
3.
What are the two types of discussions in this class (refer to the syllabus)?
unit discussions and topic-based discussions
4.
When will the topic discussion open (check the course schedule)?
The week of June 26.
5.
What time are assignments due?
11:45 pm CST
6.
I must check course announcements frequently. (True or False)
True
7.
I am required to contribute ideas (e.g. raising questions, helping others, sharing
information/experiences, answering questions, etc.) on the unit discussion boards throughout the
semester. (True or False)
True
8.
I can submit all late assignments at the end of the semester. (True or False)
False, late assignments are only accepted one day after the due date. However, the final
project may MUST BE submitted on time.
9.
I can upload the web page files to Assignments when I submit my assignments or projects
instead of URLs. (True or False)
False
10. I can find the instructor’s feedback in the "Assignments" tool where I submit assignments.
(True or False)
True
11. CSS - Mockup is due Feb. 1st. (True or False)
False
12. The best way to ask questions regarding the course and project assignments is by posting a
message on the discussion board in Sakai. (True or False)
True
13. I must send an email to the instructor when I have personal concerns or problems during the
course. (True or False)
True
Orientation Quiz 2: Debugging
1. What is a correct XHTML Strict DOCTYPE?
a. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
b. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
c. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "xhtml1/DTD/xhtml1-strict.dtd">
2. Which elements are mandatory in an XHTML document?
a. DOCTYPE, html and body
b. DOCTYPE, html, head, and body
c. DOCTYPE, html, head, title, and body
3. Which of the following statement is correct?
a. All XHTML tags and attributes must be written in lowercase.
b. All XHTML tags must be in lowercase, but not attributes.
c. All XHTML tags and attribute can be written in a combination of lowercase and uppercase.
4. What is the problem(s) of the following XHTML code? List all that apply.
<meta content-type="text/html; charset=utf-8" />
<meta name="author" content="ZONE" />
<meta name="keywords" description="Quiz" />
a.
b.
c.
d.
A meta tag does not have an attribute called content-type.
A meta tag does not have an attribute called description.
A meta tag should not be self-closed.
A meta tag does not have an attribute called name.
5. What is a correct XHTML meta tag?
a. <meta content-type="text/html; charset=utf-8" />
b. <meta content-type=”text/html” charset=”utf-8”>
c. <meta http-equiv="Content-Type" charset=”utf-8">
d. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
Code for question 6 and 7.
<ul>
<li> Red </li>
<em><li> Yellow </li></em>
<li> <strong> Blue </strong></li>
</ul>
6. What is the problem of the following XHTML code? List all that apply.
a. The <ul> tag shouldn’t nest <li> tag.
b. The strong tag is a deprecated tag for xhtml 1.0.
c. The <em> tag cannot contain the <li> tag.
d. The <li> tag does not need to be closed.
7. Which of the following statement is correct?
a. Only the <ul> tag is a block-level element.
b. Both the <li> and <strong> tags are inline-level elements
c. Both the <ul> and <li> tags are block-level elements.
d. Inline-level elements can contain any block-level elements.
8. Which XHTML code is well-formed?
a. <p>Do <em><strong>your</em></strong> best!</p>
b. <p>Do <em><strong>your</p></em> best!</strong>
c. <p>Do <em><strong>your</strong></em> best!</p>
9. What is a correct XHTML tag for a line break?
a. <break>
b. <break />
c. <br>
d. <br />
10. What is the correct form of an XHTML attribute and its value?
a. width=100
b. WIDTH=100
c. width=”100”
d. WIDTH=”100”
11. Debug the following code for XHTML 1.0 Strict.
<p>Questions? Please email us at <a
mailto=zone@missouri.edu>zone@misouri.edu</p></a>
<p>Questions? Please email us at <a href=“mailto:zone@missouri.edu”>zone@misouri.edu</a></p>
12. Debug the following code for XHTML 1.0 Transitional.
<a link="http://zone.missouri.edu/"
target="_blank"><image src="logo_on.gif" width="130"
height="130" border="0">alt="Zone Logo"</a>
<a href="http://zone.missouri.edu/" target="_blank"><image src="logo_on.gif" alt="Zone
Logo" width="130" height="130" border="0" /></a>
13. Debug the following code for XHTML 1.0 Transitional.
<ul><li><font size="1" face="Verdana, sans-serif"><a
href="http://www.google.com"
target="_new">Google</a></font></li></ol>
<ul><li font-size="1em" font-family="verdana "><a href="http://www.google.com"
target="_blank">Google</a></li></ul>
14. Write XHTML code to create the following table for XHTML 1.0 Strict.
<table>
<tr>
<td colspan=”2”></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</table>
15. Jack has a MU pawprint “jack4mu”. In his MU Bengal space, he uses SFTP to create a web
directory “7370” for a class. After uploading a “test.html” page to the 7370 directory in his Bengal
space, he cannot locate the page. Please help him identify the correct URL to the test page. What
is the correct URL of this test page?
http://web.missouri.edu/~jack4mu/7370/test.html
Download