WDD Flashcards

1
Q

File Types (image)

A
  • .BMP (Uncompressed, <= 24 bit depth) [Bitmap]
  • .GIF (Lossless, <= 8 bit depth, can be animated and transparent)
  • .JPEG (Lossy, <= 24 bit depth, supports metadata)
  • .PNG (Lossless, <= 24 bit depth, can be transparent, additional 8 bits of transparency)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

File Types (video)

A
  • .AVI (Uncompressed)
  • .MP4/.MPEG (Lossy)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

File Types (audio)

A
  • .MP3 (Lossy)
  • .WAV (Typically uncompressed)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

File Types (text)

A
  • .PDF [Portable Document Format]
  • .RTF (Stored with formatting eg font) [Rich Text Format]
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Copyright, Designs and Patents Act (1988)

A
  • Covers nearly all forms of usable media
  • Credit for use of media you do not own must be given
  • Permission must be granted from owners to use media
  • Protects digital artists by preventing people from stealing their work
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Benefits of external CSS

A
  • One change to the style sheet will change all linked pages
  • Easier to get consistent look and feel across multiple web pages
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Hyperlinks

A

<a href="url">link text</a>

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

Wireframe

A

A skeletal version of the complete website used to design the layout of a website.
Wireframes show:
- navigational links
- text areas
- media used (including file format)
- position and type of hyperlinks on a page
They do this using placeholders

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

Low fidelity prototype

A

A prototype showing the completed layout usually made using pen and paper. Included more detail than a wireframe. Easy to change elements of a website without having to code.

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

Benefits and downsides of compression

A

Pros:
- Smaller file size
- Less load time
Cons:
- Worse quality

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

End-user requirements

A

The tasks that end-users need to be able to carry out.

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

Functional requirements

A
  • Processes that the website must be able to carry out
  • interaction with databases/information that the website needs to have access to in order to function properly
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Code for unordered/ordered list

A

<ul>
<li> Uno </li>
<li> Dos </li>
</ul>

<ol>
<li> Uno </li>
<li> Dos </li>
</ol>

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

CSS code model

A

[element] / .[Class] / #[ID]{
FF
FS
C
TA
BC}

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