Web Flashcards

1
Q

What are functional requirements?

A
  • What the website must be able to do
  • Always start with: “The website should”
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are end user requirements?

A
  • What the users should be able to do
    Always start with: “The users should”
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the purpose of a sitemap?

A
  • Shows how the pages are linked
  • Are either linear or hierarchical
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the purpose of a wireframe?

A

Shows the layout of a webpage

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the purpose of a low fidelity prototype?

A
  • To get feedback from end-users about the design of the website
  • More detailed than a wireframe
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is consistency?

A
  • Pages should all have a consistent appearance
  • Everything should have similar colours, fonts, placement etc.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is readability?

A

How easy it is for text to be read and understood

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Why is compression used?

A
  • Compression is used to take up less storage
  • To either upload or download a file quicker
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is lossy compression?

A

Some important data will be lost. Results in a noticeable decrease in quality but smaller file size

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is lossless compression?

A

Important data is not lost. Overall quality of the file is not affected and has a larger file size

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is the compression of a WAV audio file?

A

The compression of a WAV audio file is lossless

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the compression of a MP3 audio file?

A

The compression of a MP3 audio file is lossy

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is a sample rate?

A
  • The number of sound samples captured every second
  • The higher the sampling rate, the better the quality
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is the compression of a JPG file?

A

Lossy compression but can represent 24 bit colour

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is the compression of a GIF file?

A

Animated files. Can only represent 8 bit colours

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is the compression of a PNG file?

A

Lossless compression and can represent 24 bit colour

17
Q

What are three ways to compress an image?

A
  • Lower the resolution
  • Reduce colour depth
  • Reducing the window size
18
Q

What is the compression of a MP4 video file?

A

The compression of a MP4 file is lossy

19
Q

What is the compression of a AVI file?

A

The compression of a AVI file is lossless

20
Q

What is a frame rate?

A

The number of frames shown per second. The more frames the higher the file size and the smoother the video

21
Q

What is the Copyright Design and Patents Act?

A
  • Give creators control over how their work is used
  • Permission must be granted to use work that is copyrighted
22
Q

What is the HTML code for an image?

A

<img></img>

23
Q

What is the HTML code for a hyperlink?

A

<a>….</a>

24
Q

What is an absolute address?

A

Will only lead to one address

25
Q

What is a relative address?

A

Will take you to a page/image that is relative to your current folder

26
Q

What does CSS stand for?

A

Cascading Style Sheets

27
Q

What are examples of CSS attributes?

A
  • Color - changes font color
  • Background-color - changes the background colour
  • Text-align - puts the text to the left/right/center
  • Font-size - changes the size of the font
  • Font-family - changes the font style
28
Q

What is does a class do?

A

Styles multiple elements the same way

29
Q

What is does an ID do?

A

Uniquely identify a HTML element

30
Q

What does javascript do?

A

Adds interactivity to a webpage

31
Q

What is OnMouseOver?

A

When you move the mouse over an object, something will happen

32
Q

What is OnMouseOut?

A

When you move your mouse off an object, something will happen

33
Q

What are examples of things you could do to test your website?

A
  • Check hyperlinks work
  • Check media loads
  • Check interface matches the wireframe
  • Check consistency between pages
34
Q

How can you evaluate your website?

A

If the website meets the functional and end-user requirements then the website is fit for purpose

35
Q

What is the HTML code for an audio?

A

<audio>
<source></source>
</audio>

36
Q

What is the tag used for an ordered/numbered list?

37
Q

What is the tag used for an unordered/bullet pointed list?

38
Q

What is the HTML code for a video?

A

<video>
<source></source>
</video>