wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

EIT Quiz 1

Total questions: 20

Worksheet time: 10mins

Name
Class
Date
1.

HTML is what type of language?

a)

Scripting Language

b)

Network Protocol

c)

Markup Language

d)

Programming Language

2.

The year in which HTML was first proposed _______.

a)

1990

b)

2000

c)

1995

d)

2001

3.

Apart from the <b> tag, what other tag makes text bold?

a)

<fat>

b)

<strong>

c)

<black>

d)

<solid>

4.

How can you make a bulleted list with numbers?

a)

<dl>

b)

<ol>

c)

<list>

d)

<ul>

5.

What tag is used to display a picture on an HTML page?

a)

picture

b)

img

c)

image

d)

src

6.

Which of the following is not a browser?

a)

Netscape Navigator

b)

Opera

c)

Microsoft Bing

d)

Mozilla Firefox

7.

If we want to define a style for a unique element, then which CSS selector will we use?

a)

id

b)

class

c)

select

d)

placeholder

8.

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?

a)

<link>

b)

<css>

c)

<style>

d)

<src>

9.

______ tag is an extension to HTML that can enclose any number of JavaScript statements.

a)

<script>

b)

<body>

c)

<head>

d)

<title>

10.

What is the correct JavaScript syntax to write "Hello World"?

a)

System.out.println("Hello World")

b)

println ("Hello World")

c)

document.write("Hello World")

d)

response.write("Hello World")

11.

Inside which HTML element do we put the JavaScript?

a)

<js>

b)

<scripting>

c)

<script>

d)

<javascript>

12.

What is the correct syntax for referring to an external script called " abc.js"?

a)

<script href=" abc.js">

b)

<script name=" abc.js">

c)

<script src=" abc.js">

d)

<run "abc.js">

13.

The script tag in JavaScript can be placed in:

a)

Head Section

b)

Body Section

c)

Head & Body Section both

d)

Can't be placed in JavaScript

14.

Local Browser used for validations on the web pages uses __________.

a)

Java

b)

HTML

c)

CSS

d)

JS

15.

How will you make all paragraph elements 'RED' in color?

a)

p.all {color: red;}

b)

p.all {color: #990000;}

c)

p {color: red;}

d)

all.p {color: #998877;}

16.

How can we write comment along with CSS code ?

a)

/* a comment */

b)

// a comment //

c)

/ a comment /

d)

<' a comment'>

17.

Which of the following tag is used for inserting the largest heading in HTML?

a)

<h1>

b)

<h6>

c)

<main_heading>

d)

<large_heading

18.

<input> is -

a)

a format tag.

b)

an empty tag.

c)

format tag and empty tag both

d)

Its not a tag at all.

19.

Which of the following tag is used to define options in a drop-down selection list?

a)

<option>

b)

<list>

c)

<select>

d)

<dropdown>

20.

Which of the following tag is used to add rows in the table?

a)

<td> and </td>

b)

<tr> and </tr>

c)

<tc> and </tc>

d)

<table_row> and </table_row>