Testing (SQA National 5 Computing Science): Exam Questions

Exam code: X816 75

8 mins3 questions
1
3 marks

Find Me An Owner dog rescue centre is creating a new website.

Each dog has its own web page.The home page contains links to all of these pages. One of the pages is shown below.

Web page showing a smiling Labrador named Dudley in the Inverness City Centre, available for adoption. Rated 4 out of 5 for friendliness.

When testing one of the links on the home page the following error screen appears.

Web browser window displaying "Page Not Found" error message with URL "FindMeAnOwner.co.uk" indicating missing page.

(i) State one possible reason why the ‘Page Not Found’ error was displayed.

[1]

(ii) All the links on the website have now been tested. Describe two other tests that should be carried out on the website.

[2]

2a
2 marks

Alpine Valley Ski Resort are designing a website to advertise their resort.

On testing an mp3 audio file implemented on the home page, the file took too long to load.

(i) Describe how the file size can be reduced without altering the length of the sound.

[1]

(ii) Describe one other test that should be carried out on the website.

[1]

2b
2 marks

The ‘Ski Shop’ page is implemented on the website.

Ski shop webpage showing a helmet, gloves priced at £12.99, and goggles. Each item features a 'Buy' button on the right.

(i) State one reason why this web page is not fit for purpose.

[1]

(ii) State what law the resort must comply with to use images of items from suppliers on their website.

[1]

3
1 mark

Blockland theme park is developing a new website for visitors.

The following code is used to create the home page.

<!doctype html>
<html>
<head>
<title>Blockland Home Page</title>
<style>
body{background-color:lightblue;font-family:arial;}
img{height:150px; width:150px;}
h1{font-family:helvetica; font-size:24pt; text-align:center;}
.openSection{text-align:left;}
div{background-color:white; font-size:12pt;}
</style>
</head>
<body>
<img src="blocklandLogo.jpg" alt="Blockland Logo">
<h1>Welcome to Blockland!</h1>
<div>
<h1 class="openSection">Ultimate Day Out</h1>
<p>With an amazing themed room to suit every Block Lover including
rapid race cars, terrifying tarantulas and spectacular space there
is something for the whole family.</p>
<a href="parkRides.html">Click here to view the rides in the
park</a>
</div>
...
<a href="parkShop.html">Click here to browse the shop</a>
</body>
</html>

The website has been tested to ensure that all navigation works as expected and all the media on the website displays correctly.

Describe one other test that could be carried out on the website.