WorksheetsNational 5 Computing Science - WDD
Total questions: 22
Worksheet time: 23mins
Which of the following would NOT be an end-user requirement?
The website should contain a web page called JohnDeer5E.html
The user wants to see pictures of the tractors that are being sold.
The users wants to see a video of how to drive a tractor.
The user wants to see some information about what each tractor can do.
Which of the following is NOT a functional requirement?
The web page tractors.html should contain the picture called tractor-E22.png suing the <img> tag.
There should be three tractor type web pages called; JohnDeer.html, JCB.html and Sonalika.html.
The web user should be able to listen to an interview given by the John Deer CEO.
On the home page there should be an external hyperlink that takes you to the muscus.co.uk website using the <a> tag.
Which of the following is NOT an example of effective user-interface design?
Position of navigational links
Consistent style across multiple pages
Using lots of different colours to increase user satisfaction
Using appropriate file formats for media files.
What is the purpose of a wireframe?
To design the layout of the website
To design the layout of a web page
To allow the user to test the usability of the website
To To design usability tests using porotyping
What is the purpose of the site structure diagram?
To design the navigational links between web pages in a website.
To design the layout of a web page
To allow the user to test the usability of the navigational links
To allow the user to create the structure of a web page
Select the correct answer:
Internal hyperlinks: take you from one web page to another in the same website. External hyperlinks: take you from one web page to another in a different website.
Internal hyperlinks: take you from one web page to another in the different website. External hyperlinks: take you from one web page to another in a different website.
Internal hyperlinks: take you from one web page to another in the same website. External hyperlinks: take you from one web page to another in a same website.
Internal hyperlinks: take you from one web page to another in the different website. External hyperlinks: take you from one web page to another in a same website.
The type of addressing shown in the href attribute is:
Absolute Addressing
Relative Addressing
Domain Addressing
URL Addressing
What is a standard file format?
A type of file that can be used with programs other than the one it was created with.
A method of standardising the files used by a computer so that they are all the same file type.
A method of compression to that files take up less storage space.
A way to format the text in a text document so that it is displayed correctly.
Which of the following standard file formats allows you to create an animation?
WAV
GIF
PNG
JPEG
Which of the following standard file formats would allow you to create a high quality, transparent logo for a website?
JPEG
GIF
AVI
PNG
Which standard file format should you use to transmit an audio file on a web page the fastest?
WAV
GIF
MP3
MP4
Why is compression important?
To increase transmission speeds.
To reduce bit depth.
To reduce file sizes so that transmission speed is slowed.
To allow lossy compression to remove extra data.
Which tag should you use to put "Glow - Launch Pad" on the web page tab?
<url></url>
<head></head>
<tab></tab>
<title></title>
Which of the following examples shows the correct way to display an image on a web page?
<source src=""filename.jpg" alt="A Picture"></source>
<image src="filename.jpg" alt="A Picture">
<img src="filename.jpg" alt="A Picture">
<file src="filename.jpg" alt="A Picture">
The html code above contains an error. What is it?
Missing </source>
The attribute type contains that wrong information.
The tag should be a <video> tag not an <audio> tag.
src= should be source=.
Which tag is missing from the html code above?
<item>__</item>
<li>__</li>
<ol>__</ol>
<i>__</i>
What does CSS allow you to do?
Change the content of a web page.
Add design notations to a web page.
Change the style of a web page.
Add interactivity to the web page.
Which of the following is NOT a CSS selector?
ID
p
color
h4
What background colour will "Title" be displayed as on the web page?
aqua
black
one
green
Which of the following declarations would change the font of elements with the class "info" to Lucida Console?
#info{font:"Lucida Console";}
.info{font-family:"Lucida Console";}
.info{font:family:"Lucida Console";}
#info{font-family:"Lucida Console";}
Which of the following CSS declarations will change the background colour of an element with the id "text" to orange (#FFA500)?
#text{background-color:#FFA500;}
.text{background:#FFA500;}
.text{background-color:#FFA500}
#text{background:#FFA500;}
Which javascript function will allow you to change an element when the user's mouse moves off of the element?
onmouseout
onmousemove
onmouseover
onmouseexit
