Question 1
Question 2
Question 3
< table border=1> <tr> <td rowspan=2> ab </td> <td colspan=2> cd </td> </tr> <tr> <td> ef </td> <td rowspan=2> gh </td> </tr> <tr> <td colspan=2> ik </td> </tr> </table> |
Question 4
Which of following statements is/are False?
1. XML overcomes the limitations in HTML to support a structured way of organizing content.
2. XML specification is not case sensitive while HTML specification is case sensitive.
3. XML supports user defined tags while HTML uses pre-defined tags.
4. XML tags need not be closed while HTML tags must be closed.
2 only
1 only
2 and 4 only
3 and 4 only
Question 5
In a web server, ten WebPages are stored with the URLs of the form http://www.yourname.com/var.html; where, var is a different number from 1 to 10 for each Webpage. Suppose, the client stores the Webpage with var = 1 (say W1) in local machine, edits and then tests. Rest of the WebPages remains on the web server. W1 contains several relative URLs of the form “var.html” referring to the other WebPages. Which one of the following statements needs to be added in W1, so that all the relative URLs in W1 refer to the appropriate WebPages on the web server?
<a.href: “http://www.yourname.com/”, href: “...var.html”>
<base href: “http://www.yourname.com/”>
<a.href: “http://www.yourname.com/”>
<base href: “http://www.yourname.com/”, range: “...var.html”>
Question 6
intro.xml
<?xml version = "1.0"?> <!DOCTYPE myMessage SYSTEM "intro.dtd"› <myMessage> <message>Welcome to XML</message> </myMessage> intro.dtd <! ELEMENT myMessage (message)> <! ELEMENT message (#PCDATA)>
A validating parser will classify intro.xml as
Well-formed and validated
Well-formed but not validated
Validated but not well-formed
Question 7
<A HREF = "http://www.gate.ac.in/HTML/BASIC/testpage.html">Test Me</A>
<A HREF = "/BASIC/testpage.html">Test Me</A>
<A HREF = "testpage.html">Test Me</A>
<A HREF = "testpage.html#test">Test Me</A>
Question 8
Question 9
A HTML form is to be designed to enable purchase of office stationery. Required items are to be selected (checked). Credit card details are to be entered and then the submit button is to be pressed. Which one of the following options would be appropriate for sending the data to the server. Assume that security is handled in a way that is transparent to the form design.
Only GET
Only POST
Either of GET or POST
Neither GET nor POST
Question 10
<Book> <title> GATE 2005 </title> <type value = "BROCHURE"/> <accno>10237623786</accno> </Book> <Book> <type value = "FICTION"/> <accno>0024154807</accno> </Book>
There are 33 questions to complete.