0% found this document useful (0 votes)
119 views

Summative Assessment  - Developing For The Web

This document contains a summative assessment for a Year 8 class on developing for the web. The assessment contains 13 multiple choice questions testing students' knowledge of HTML and CSS tags and syntax. It also contains 5 short answer questions asking students to explain concepts like the differences between HTML and CSS, what div tags are used for, guidelines for responsive and good website design, and how data from web forms is used. The assessment is designed to test students' understanding of key concepts needed to develop websites.

Uploaded by

Han Yuan Yap
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
119 views

Summative Assessment  - Developing For The Web

This document contains a summative assessment for a Year 8 class on developing for the web. The assessment contains 13 multiple choice questions testing students' knowledge of HTML and CSS tags and syntax. It also contains 5 short answer questions asking students to explain concepts like the differences between HTML and CSS, what div tags are used for, guidelines for responsive and good website design, and how data from web forms is used. The assessment is designed to test students' understanding of key concepts needed to develop websites.

Uploaded by

Han Yuan Yap
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 6

Year 8 – Developing for the Web Summative Assessment Questions

Year 8 – Developing for the Web - Quiz

Name:
Class:

Time: 40 mins Total mark: /30

Strength:

Target:

Reflection:

Beginning Developing Mastering

Read the questions carefully before you answer them. Make sure you look at how
many marks are available for the question. Answer ALL the questions.

Page 1
Year 8 – Developing for the Web Summative Assessment Questions

Part A – Quiz (13 marks)

Q1. The main heading on a web page should be formatted using which tag?

A. <h1>
B. <h2>
C. <b>
D. <u>

Q2. Which of the following lines of a HTML document is incorrect?

A. <h2 style="color:red;">Important</h2>
B. <p style="font-family:courier;">This is a paragraph.</p>
C. <p style="colour:blue;">Think calm thoughts.</p>
D. <h2>So it started on a cold wet Tuesday morning…</h2>

Q3. What is the alt attribute in img tags used for?

A. Provide an alternative image if the first doesn’t load.


B. Provide a textual description of the image.
C. Alters the image size.
D. Alerts the user that the image has loaded.

Q4. What is displayed in a browser if the following line of HTML is used?

<p style="text-align:center;"><img src="MyPhoto.jpg"></p>

A. Text is wrapped around the left-hand side of the image MyPhoto.jpg.


B. The text MyPhoto.jpg is converted to centred text in a paragraph.
C. The image MyPhoto.jpg is added as a centred background on the page.
D. An image named MyPhoto.jpg is displayed in the centre of a new paragraph.

Q5. Which of the following is a benefit of using Cascading Style Sheets (CSS)?

A. Web pages load more quickly.


B. There will be fewer files created for the website.
C. All the formatting of a single tag can be adjusted in one file.
D. Search engines will be able to find the web page more easily.

Page 2
Year 8 – Developing for the Web Summative Assessment Questions

Q6. What formatting would the following CSS lines apply to a HTML document?

body {
color: green;
}

A. The border around images will be green.


B. The title of the page will be green.
C. The background of the page will be green.
D. The text on the page will be green.

Q7. Which is correct CSS syntax? 

A. {body; color= black}


B. body: color= black
C. body {color:black;}
D. (body color is black) 

Q8. h1 {
text-decoration: underline overline dotted red;
}

A. red waves under the heading


B. red dots over and under the heading
C. red waves over and under the heading
D. red dots over the heading

Q9. Which is the proper way to write an h1 tag?

A. <h1>Hello</h1>
B. <h1>"Hello
C. {h1}Hello{/h1}
D. <h1>Hello<h1>

Q10. What is wrong with the following HTML hyperlink?

Page 3
Year 8 – Developing for the Web Summative Assessment Questions

<a href="quiz.htm">What is your spirit animal? <a>

A. It should be link and not href.


B. You cannot have text inside the tag.
C. "quiz.htm" does not need speech marks.
D. The tag is not closed.

Q11. Which code defines a paragraph?

A. <!DOCTYPE html>
B. <html>
C. <p>
D. <head>

Q12. What defines the beginning and ending of the visible part of a webpage?

A. <head> main part of the document </body>


B. <body> main part of the document </html>
C. </body> main part of the document <html>
D. <body> main part of the document </body>

Q13. Web pages starts with which of the following tag???

A. <Body>
B. <Title>
C. <HTML>
D. <Form>

Part B – 17 Marks

Page 4
Year 8 – Developing for the Web Summative Assessment Questions

Look at each of the questions below relating to your program and complete your
answers in the text

1: Explain the difference between how HTML and CSS are used in creating a web
page.

2: What is the HTML <div> tag used for?

3: Complete the code below to add CSS to make the background of the web page
orange.
<html>
<head>
Click here to add CSS code

</head>
<body>
<p>Welcome to the CSS guide</p>
</body>
</html>

4: What is meant by ‘responsive design’?

5: How would you change this line of HTML code to make it responsive?
<img src=“moon.jpg” width=750px>

6: Give three guidelines to follow for good website design.

7: Give two advantages of using a template in web design.

Page 5
Year 8 – Developing for the Web Summative Assessment Questions

8: Where does the data you enter a web form go and how might it be used?

------------------------------------- End of Test ---------------------------------------------

Page 6

You might also like