You are on page 1of 2

JanApr2012

ReviewExercise

TF006IntroductiontoICT

Question:Basedonprogramminglanguagebelow,whatistheoutput?
<?xml version = "1.0" encoding = "utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns = "http://www.w3.org/1999/xhtml"> <head> <title>Solution</title> </head> <body> <h1>College Visit Feedback Form</h1> <p> Please fill out this form to let us know how your visit was so that we can improve our facilities to better suit you and your peers' needs. </p> <form method = "post" action = ""> <p><label>Full Name: <input name = "fullname" type = "text" size = "40" /> </label></p> <p><label>Address1: <input name = "address1" type = "text" size = "40" /> </label></p> <p><label>Address2: <input name = "address2" type = "text" size = "40" /> </label></p> <p><label>Zip Code: <input name = "zip" type = "text" size = "10" /> </label></p> <p><label>E-mail: <input name = "email" type = "text" size = "25" /> </label></p> <p><strong><em>Check off all of the characteristics that you enjoyed about the college:</em></strong><br /></p> <p> <label>Campus <input name = "likes" type = "checkbox" value = "campus" /> </label> <label>Students <input name = "likes" type = "checkbox" value = "students" /> </label> <label>Location <input name = "likes" type = "checkbox" value = "location" /> </label> </p> <p> <label>Atmosphere <input name = "likes" type = "checkbox" value = "atmosphere" /> </label> <label>Dorm Rooms <input name = "likes" type = "checkbox" value = "dormrooms" /> </label> <label>Sports <input name = "likes" type = "checkbox"

7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62

JanApr2012 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83

ReviewExercise

TF006IntroductiontoICT

value = "sports" /> </label> </p> <p><strong><em>How did you become interested in our college?</em></strong><br /></p> <p> <label>Friends <input name = "interest" type = "radio" value = "friends" checked = "checked" /> </label> <label>Television <input name = "interest" type = "radio" value = "tv" /> </label>

<label>Internet <input name = "interest" type = "radio" value = "internet" /> </label>

<label>Other 84 <input name = "interest" type = "radio" 85 value = "other" /> 86 </label> 87 </p> 88 <p><strong><em>Please give us any additional feedback 89 that you may have</em></strong><br /></p> 90 <p> 91 <label>Comments: 92 <textarea name = "comments" rows = "4" 93 cols = "40"></textarea> 94 </label> 95 </p> 96 <p> 97 <input type = "submit" value = "Submit" /> 98 <input type = "reset" value = "Clear" /> 99 100 </p> 101 </form> 102 </body> 103 </html>

You might also like