EXTRA NOTES Flashcards

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

Explain what a primitive tool is in Adobe Animate.

A

You can precisely control the size, corner radius, and other properties of a rectangle or oval shape at any time after you have created it without having to draw it from scratch.

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

JPG

A

A image saved in a compressed format.
Best format for digital photographs.

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

GIF

A

A GIF file is an image file often used for web graphics.
Handles transparency.

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

PNG

A

Contains a bitmap of indexed colours and uses lossless compression, similar to a .GIF file commonly used to store graphics for web images.
Handles transparency.

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

MP3

A

Audio file saved in a compressed audio format for music or sound effects.

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

WAV

A

Audio file saved in an uncompressed audio format for music or sound effects.

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

SWF

A

The output file of Adobe Animate.
No longer used online.

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

MP4

A

An MP4 file is a multimedia file commonly used to store a movie or video clip, but may also contain subtitles or images.

Predominantly the most common type of video file format.

Lossy compression video files that keep the file size as small as possible without losing quality.

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

List some digital-based sites you can go to for inspiration during research.

A

Art/images
- Abduzeedo
- Colossal

Video
- YouTube
- Vimeo

Animation
- Movies eg. Disney

Other
- Pinterest

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

Explain what concept realisations or samples are.

A

Concept realisations or samples are visual references provided by your client, which can be in many forms such as digital outputs, drawings, or photographs, that aim to serve as the basis for your design inspiration rather than for direct copying.

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

Outline the structure of the standard industry naming conventions.

A

YYYY.MM.DD + Custom File Name + 000 (File Number) + .file extension

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

Explain a hierarchical navigation structure.

A

A hierarchical navigation structure is a tree-like organization where the home page serves as the top level, branching into categories and sub-categories, with each page typically containing a link back to the home page.

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

Explain a linear navigation structure.

A

A linear navigation structure is a sequential system where web pages are accessed one after another, suitable for content that is best viewed in a continuous way such as a PowerPoint presentation.

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

Explain what Inline CSS is.

A

Styling is applied directly to an HTML element using the “style” attribute. For example:
<p style="color: red;">This is a red paragraph.</p>

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

Explain what External CSS is.

A

Styling is defined in an external CSS file (usually with a .css extension) and linked to the HTML document using the “link” element within the document’s head. For example:
<link rel="stylesheet" type="text/css" href="styles.css">

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

Explain what Internal CSS is.

A
Styling is defined within a <style> element in the HTML document's head. For example:
<head>
<style>
p {
 color: blue;
}
</style>
</head>
<body>
<p>This is a blue paragraph.</p>
</body>
17
Q

Outline the attributes of CSS code.

A
Selector                                     Value
     V            ( Declaration )           V
    h1   { color: blue; font-size: 12px; }
                ^         ^              ^
       Property    Value    Property

The selector is affected by a (property) at a specific (value.) The CSS declaration is found within the curly brackets {….}, i.e. the highlighted section in this question.

18
Q

Explain what a unique CSS selector is.

A

A unique CSS selector is a string of identifiers that precisely targets and styles a specific HTML element, ensuring it is selected and styled uniquely among other elements on a webpage.

19
Q

Identify 5 types of production requirements.

A

Copyright
Deadlines
Budget
Confidentiality
Availability of staff

20
Q

Define vilification.

A

To offend or intimidate another person or group in public on the basis of their race.

21
Q

List some reasons someone would rather use traditional methods of creation.

A

particular aesthetic look
cheaper than digital
more free-flowing and intuitive

22
Q

How do you insert a mp4 video from a separate folder into HTML code without moving it?

A
  1. Insert, HTML, HTML 5 Video
    <video></video>
  2. Type source src ensuring to press browse and select the video. Then specify the type,
  3. The final code should be this:

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