wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Web Designing

Total questions: 41

Worksheet time: 21mins

Name
Class
Date
1.

GIF does not support background transparency.

a)

True

b)

False

2.

Which organization defines the web standard?

a)

Microsoft Corporation

b)

IBM Corporation

c)

Apple Inc.

d)

World Wide Web Consortium

3.

File Transfer Protocol (FTP) is a standard Internet protocol for exchanging files between computers on the Internet. 

a)

True

b)

false

4.

If R=255, G=0, B=0, the color will be black.

a)

True

b)

False

5.

In order to provide web service to browsers of client computers, ___________ should be installed on server machine.

a)

HTTP Server / Web Server

b)

Windows Server

c)

Linux Server

d)

WAMP Server

6.

A 6 digit Hex color (#FF9966) defines values of Red, Blue and Green in which order?

a)

#RRGGBB

b)

#BBGGRR

c)

#BBRRGG

d)

#RGBRGB

7.

What is/are correct regards to e-mail addresses?

a)

can never contain spaces

b)

must contain "@" symbol

c)

are case insensitive

d)

All of the above

8.

'How to define the link should open in new page in HTML?

a)

<a href = “http://www.mcqsets.com/” target = “blank”>Click Here</a>

b)

<a href = “http://www.mcqsets.com/” target = “_blank”> Click Here </a>

c)

<a href = “http://www.mcqsets.com/” target = “#blank”> Click Here </a>

d)

<a href = “http://www.mcqsets.com/” target = “@blank”> Click Here </a>

9.

'CSS is an acronym for

a)

Cascading Style Sheet

b)

Costume Style Sheet

c)

Cascading System Style

d)

None of the Above

10.

'Which tag is used to display Preformatted texts?

a)

<pre> … </ pre>

b)

<prefor> … </ prefor>

c)

<pre text> … </ pre text>

d)

<pre format> … </ pre format>

11.

________ keyword is used to declare variables in JavaScript.

a)

Var

b)

Dim

c)

String

d)

Integer

12.

Valid mouse event is 

a)

onMouseLeaveMe

b)

onMousewithinMe

c)

onmousemove

d)

onmousepress

13.

'"1" + 2 + "3" + 4;

What does the above statement evaluate to?

a)

10

b)

1234

c)

37

d)

None

14.

document. write("hello “) displays the message box with the word “hello”. 

a)

TRUE

b)

FALSE

15.

How to specify the color of the hypertext links with JavaScript?

a)

document.linkColor="#00FF00";

b)

document.LColor="#00FF00";

c)

document.LinkC="#00FF00";

d)

document.hyperTextLink="#00FF00";

16.

Which of the following best describes JavaScript?

a)

a low-level programming language

b)

a scripting language precompiled in the browser

c)

a compiled scripting language

d)

an object-oriented scripting language

17.

Which input type defines a Date control (no time zone)? 

a)

week

b)

year

c)

Date

d)

week, year, Date

18.

Which of the following is not form controls elements in HTML5? 

a)

url

b)

search

c)

money

d)

email

19.

<colgroup> is a new element of HTML5? 

a)

TRUE

b)

FALSE

20.

To play video we must have to use some plug-in in HTML 5

a)

True

b)

FALSE

21.

HTML is governed by

a)

The Google Corporation

b)

The Microsoft Corporation

c)

The United Nations committee on Telecommunications

d)

The World Wide Web Consortium

22.

Choose the correct answer about HTML5: a. Reduce the need for external plug-in (like Flash). b. Uses more markups to replace scripting language

a)

a-True, b-False

b)

a-True, b-True

c)

a-False, b-False

d)

a-False, b-True

23.

'figure>

<img src="myimage.jpg" alt="My image">

<figcaption>

<p>This is my self portrait.</p>

</figcaption>

</figure>

Is the above HTML valid?

a)

Yes

b)

No

24.

CSS comments are inserted inside which of following?

a)

//...................//

b)

<!..................>

c)

/*..................*/

d)

/......................../

25.

Multiple Column Layout is an CSS3 modules

a)

TRUE

b)

FALSE

26.

CSS3 adds an important new capability that allows you to set styles based on common interface properties such as width, height, aspect ratio, and number of available colors. 

a)

True

b)

FALSE

27.

div

{box-shadow: 10px 10px 5px #888888; 

}

------- this css will add a rounded corners to a div element

a)

TRUE

b)

FALSE

28.

box-shadow: 5px 5px 5px #888; What does the third value in the declaration specify? 

a)

X off set

b)

Y offset

c)

Blur radius

d)

Margin

29.

'ul {

MaRGin: 10px;

}

Are CSS property names case-sensitive?

a)

True

b)

False

30.

What does 'a' stand for in RGBa? 

a)

Alt-transparency

b)

Alpha

c)

Alphabetic

d)

Alphanumberic

31.

A ____ is a device used to convert an image into a digital form for storage, retrieval, or other electronic purposes.

a)

digital camera

b)

fax machine

c)

scanner

d)

Photoshop

32.

'<head>

<link href="main1.css" rel="stylesheet">

<script>

alert('Hello World');

</script>

</head>

Does main1.css have to be downloaded and parsed before Hello World is alerted?

a)

Yes

b)

No

33.

'Which of the following property is used to control the scrolling of an image in the background?

a)

background-attachment

b)

background

c)

background-repeat

d)

background-position

34.

'Which of the following property is used to align the text of a document?

a)

text-indent

b)

text-align

c)

text-decoration

d)

 text-transform

35.

'Which ways is correct to write a CSS?

a)

p {color:red; text-align:center};

b)

 p {color:red; text-align:center}

c)

 p {color:red; text-align:center;}

d)

p (color:red;text-align:center;)

36.

Which HTML element is used to define the structure of a navigation menu?

a)

<nav>

b)

<menu>

c)

<ul>

d)

<header>

37.

What is the purpose of the 'alt' attribute in an <img> tag?

a)

To set the image height

b)

To define the image width

c)

To provide alternative text for the image

d)

To specify the image source

38.

Which CSS property is used to change the font of an element?

a)

font-style

b)

font-size

c)

font-family

d)

font-weight

39.

Which of the following is a valid way to include an external JavaScript file in an HTML document?

a)

<script src="script.js"></script>

b)

<import src="script.js">

c)

<link href="script.js" rel="script">

d)

<js src="script.js"></js>

40.

What does the 'z-index' property in CSS control?

a)

The stacking order of elements

b)

The opacity of an element

c)

The size of an element

d)

The visibility of an element

41.

Which HTML element is used to define a footer for a document or section?

a)

<footer>

b)

<bottom>

c)

<section>

d)

<aside>