HTML

You might also like

Download as doc, pdf, or txt
Download as doc, pdf, or txt
You are on page 1of 3

HTML

Questions
1.Who develops HTML?
a. WWW
b. W3C
c. AT&T
d. Bell
2.We send and receive HTML file using which protocol?
a. SMTP
b. POP3
c. HTTP
d. FTP
3.Which sequence of HTML tags are correct?
a.
<html><head><title></<title></head><body></body></html
>
b.
<html><head></head><body><title></<title></body></html
>
c.
<html><head><title></<title><body></body></head></html
>
d.
<html><title></<title><head></head><body></body></html
>
4.Which command we use to link a page with an HTML page?
a. <a link=\"page.htm\" ></a>
b. <a href=\"page.htm\" ></a>
c. <a connect=\"page.htm\" ></a>
d. <a attach=\"page.htm\" ></a>
5.Which command we use to add an Image?
a. <image src="url">
b. <img src="url">
c. <src img="url">
d. <img srcimg="url">
6.What is extension of html file ?
1. html
2. htm
3. xml
4. xhtml
7.The <br /> tag
1. Is used to break a line.
2. Is used to bachelor tag this has no body
3. Has no end tag
4. All of the above
ASP.NET

 1. What does ASP stand for?

Active Standard Pages

All Standard Pages

Active Server Pages

A Server Page

 2. ASP server scripts are surrounded by delimiters, which?

<&>...</&>

<%...%>

<%>...</%>

<script>...</script>

5. What is the default scripting language in ASP?

VBScript

EcmaScript

6. How can you script your ASP code in JavaScript?


PERL

JavaScript
Start the document with: <%@ language="javascript" %>

End the document with: <% language="javascript" %>

Start the document with: <% language="javascript" %>

JavaScript is the default scripting language

18. Which of these objects is NOT an ASP


component?
LinkCounter

Counter

File Access

AdRotator

16. Which one of these events is a standard Global.asa event?

Session_id

Application_OnStart

Global.asa doesn't have any standard events

Session_Start

3. How do you write "Hello World" in ASP

Document.Write("Hello World")

Response.Write("Hello World")

"Hello World"

You might also like