wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Zoom Cafe Episode 3

Total questions: 15

Worksheet time: 7mins

Name
Class
Date
1.

Which attribute specifies a unique alphanumeric identifier to be associated with an element?

a)

class

b)

id

c)

article

d)

html

2.

Which of the following is not an empty element?

a)

<hr/>

b)

<br/>

c)

<p/>

d)

Both <hr/> and <br/>

3.

Which of the following gives a text description of the image if it is not available?

a)

alt

b)

title

c)

src

d)

height

4.

Which of the following is not set with font-style property?

a)

font-style: normal

b)

font-style: italic

c)

font-style: oblique

d)

font-style: capitalize

5.

By Default the direction of flex is?

a)

Row

b)

Column

6.

Select the CSS property that sets the width of an element’s bottom border?

a)

border-width

b)

border-bottom

c)

border-width-down

d)

border-bottom-width

7.

Which of the following Property controls the display of small caps?

a)

font-size

b)

font-variant

c)

font-style

d)

font-weight

8.

Which is the correct CSS syntax?

a)

Body:color=black

b)

{body;color:black}

c)

{body:color=black(body}

d)

Body {color: Black}

9.

What is the correct HTML for referring to an external style sheet?

a)

<style src="mytable.css">

b)

<link ref="stylesheet" type="text/css" href="myclass.css">

c)

<stylesheet>mytable.css</stylesheet>

10.

Which is not a value of POSITION element in css

a)

relative

b)

fixed

c)

Sticky

d)

moving

11.

Choose appropriate Option(s) : JavaScript is also called as _____________

a)

Browser Side Scripting Language

b)

Server Side Scripting Language

c)

None of These

d)

Client Side Scripting Language

12.

Local Browser used for validations on the Web Pages uses ________

a)

java

b)

html

c)

css

d)

javascript

13.

Is this correct syntax to include JS Code inside HTML Page ?

<script type="text/javascript">

...

</script>

a)

YES

b)

NO

14.

We cannot Place JS Code in the body tag .

a)

FALSE

b)

TRUE

15.

Is this placement of JS code inside HTML Element is Error Free ?


<html><head><title>My Page</title>

</head>

<body>

<a href="javascript:myFunction();">Click here</a>


<script type="text/javascript">

function myFunction() {

alert('Hello world');

}

</script>

</body>

</html>

a)

YES

b)

NO