ChatGPT Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

End-User Requirement:

A

Tasks a user expects to do when accessing a webpage

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

Functional Requirement:

A

Technical processes or activities the system must perform

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

Navigational Structure:

A

The layout showing the direction of links within a webpage

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

Wireframe Design:

A

Definition: Blueprint of the webpage’s user interface.

Purpose: Provides a visual representation of webpage layout and elements.

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

Low Fidelity Prototype:

A

Definition: Sketch of the proposed webpage with more detail than a wireframe.

Purpose: Offers a more detailed representation of the webpage’s layout and content.

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

Copyright, Designs and Patents Act:

A

Purpose: Ensures creators are rewarded for their work and provides protection against unauthorized use.

Coverage: Copyright protection for original works, including websites and digital content.

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

WAV:

A

Characteristics: Uncompressed, high-quality, large file size.

Suitability: Standard for audio CDs, less suitable for streaming due to file size.

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

MP3:

A

Characteristics: Lossy compression, smaller file size.

Suitability: More suitable for streaming, reduced quality compared to WAV.

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

Sampling Rate:

A

Definition: Measure of how many times per second a sound is sampled.

Impact: Higher sampling rates result in better audio quality but larger file sizes where as lower sampling rates result in smaller files but poorer audio quality

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

GIF:

A

Characteristics: Lossless compression, limited color depth (256 colors), supports animation.

Suitability: Suitable for cartoons and animations.

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

JPEG:

A

Characteristics: Lossy compression, higher color depth (16.7 million colors).

Suitability: Suitable for storing photographs.

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

PNG:

A

Characteristics: Lossless compression, high color depth, supports transparency.

Suitability: Suitable for storing photographs and images with transparency.

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

Color Depth:

A

Definition: Number of bits used to store color for each pixel in an image.

Impact: Higher color depth results in better image quality but larger file sizes.

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

Resolution:

A

Definition: Total number of pixels in an image.

Impact: Higher resolution results in better image quality but larger file sizes where as lower resolution results in smaller files but poorer image quality

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

Compression:

A

Reduces file size for quicker downloads and streaming and to save storage space

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

Classes and IDs:

A

Identifiers used to style multiple elements on a webpage.

CSS rules can be applied to classes and IDs to style specific elements.

17
Q

HTML Page Structure:

A

Title, head, body

18
Q

DIV Tag:

A

Defines a division or section of code in an HTML document for styling

19
Q

Image Insertion:

A

<img></img>

20
Q

Audio Insertion:

A

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

21
Q

Video Insertion:

A

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

22
Q

Numbered List:

A

<ol>
<li>Item 1</li>
<li>Item 2</li>
</ol>

23
Q

Bullet Point List:

A

<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>

24
Q

Link Creation:

A

<a>Link Text</a>

25
Q

Anchor Creation (Internal Link):

A

<a>Link Text</a>

26
Q

Heading Creation:

A

<h1>Heading Text</h1>

27
Q

Paragraph Creation:

A

<p>Paragraph Text</p>

28
Q

Internal Link:

A

Link to another page or section within the same website e.g. navigation menu, anchor links

29
Q

External Link:

A

Link to a different website or domain