NEW
Font size
WorksheetsEIT Quiz 1
Total questions: 20
Worksheet time: 10mins
HTML is what type of language?
Scripting Language
Network Protocol
Markup Language
Programming Language
The year in which HTML was first proposed _______.
1990
2000
1995
2001
Apart from the <b> tag, what other tag makes text bold?
<fat>
<strong>
<black>
<solid>
How can you make a bulleted list with numbers?
<dl>
<ol>
<list>
<ul>
What tag is used to display a picture on an HTML page?
picture
img
image
src
Which of the following is not a browser?
Netscape Navigator
Opera
Microsoft Bing
Mozilla Firefox
If we want to define a style for a unique element, then which CSS selector will we use?
id
class
select
placeholder
Which element is used in the <HEAD> section on an HTML page, if we want to use an external style sheet file to decorate the page?
<link>
<css>
<style>
<src>
______ tag is an extension to HTML that can enclose any number of JavaScript statements.
<script>
<body>
<head>
<title>
What is the correct JavaScript syntax to write "Hello World"?
System.out.println("Hello World")
println ("Hello World")
document.write("Hello World")
response.write("Hello World")
Inside which HTML element do we put the JavaScript?
<js>
<scripting>
<script>
<javascript>
What is the correct syntax for referring to an external script called " abc.js"?
<script href=" abc.js">
<script name=" abc.js">
<script src=" abc.js">
<run "abc.js">
The script tag in JavaScript can be placed in:
Head Section
Body Section
Head & Body Section both
Can't be placed in JavaScript
Local Browser used for validations on the web pages uses __________.
Java
HTML
CSS
JS
How will you make all paragraph elements 'RED' in color?
p.all {color: red;}
p.all {color: #990000;}
p {color: red;}
all.p {color: #998877;}
How can we write comment along with CSS code ?
/* a comment */
// a comment //
/ a comment /
<' a comment'>
Which of the following tag is used for inserting the largest heading in HTML?
<h1>
<h6>
<main_heading>
<large_heading
<input> is -
a format tag.
an empty tag.
format tag and empty tag both
Its not a tag at all.
Which of the following tag is used to define options in a drop-down selection list?
<option>
<list>
<select>
<dropdown>
Which of the following tag is used to add rows in the table?
<td> and </td>
<tr> and </tr>
<tc> and </tc>
<table_row> and </table_row>
