Analysis (SQA National 5 Computing Science): Exam Questions

Exam code: X816 75

5 mins4 questions
1
2 marks

Visitors to a farm park gave the following feedback.

Feedback comments about a farm visit include wanting more info on photos, videos, opening time, ticket prices, farm shop, and animal experiences.

The farm park decides to create a website that takes account of this feedback.

Use the information above to create two functional requirements for the website.

2
1 mark

Gone Away travel is a holiday booking website. Below is the home page for the website.

Webpage showcasing travel destinations with black-and-white images of Naples, a harbour in Copenhagen, and the Sphinx with pyramids in Egypt.

Gone Away Travel would like to improve their website based on user feedback. A sample of the feedback is shown below.

‘It would be fun to listen to clips of useful local phrases for each holiday location.’

‘I felt really bored while using your website. Booking a holiday should be fun.’

‘I got stuck on the Naples page!’

Identify one functional requirement that should be added to the website based on the feedback above.

3
1 mark

The Vulpes fox charity would like a website to increase public knowledge of foxes.

The following content is required.

The website will have pages about different types of foxes where users can view pictures and listen to the sounds made by each fox. The charity logo needs to be visible at the top of each page.

Identify a functional requirement of the above website.

4
1 mark

Katrina’s Cars is a car auction website. The HTML and CSS code for the home page is shown below.

<html>
<head>
<title>Katrina’s Cars</title>
<style>
h1{text-align:center;}
h2{text-align:right;}
#heading1{text-align:right;}
#heading2{text-align:left;}
</style>
</head>
<body>
<div>
<h1 id="heading1">Katrina’s Cars</h1>
<img src="logo.jpg">
</div>
<div>
<h2 id="heading2">Top deals</h2>
<ul>
<li>Maxi Cupar</li>
<li>Mizdo CX-5</li>
<li>Oodi TT</li>
</ul>
</div>
</body>
</html>

Katrina’s Cars has requested an update to its website following customer feedback.

‘We receive a lot of e-mails from our users asking us to cancel their bid on a car. This is taking up a lot of our time. Can you add a feature to do this?’

Explain why the above is an end-user requirement.