Computer Science - Representing Characters and Images in a computer + graphics πŸ’» Flashcards

(42 cards)

1
Q

What is a character set?

A

The set of symbols that may be represented by a computer at a particular time.

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

What are the two main internationally agreed character sets?

A

ASCII and Unicode

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

What does ASCII stand for?

A

American Standard Code for Information Interchange.

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

Initially, how many bits did ASCII use and how many characters could it represent?

A

It used 7 bits out of the 8 bit byte, which meant it could represent 128 different characters (2⁷)

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

How many bits does the extended ASCII use and how many characters can it represent?

A

It uses all 8 bits and can represent up to 256 characters (2⁸)

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

In ASCII, upper case letters are stored as the numbers:

A

65 to 90

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

In ASCII, lower case letters are stored as the numbers:

A

97 to 122

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

In ASCII, numeric digits are stored as the numbers:

A

48 to 57

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

In ASCII, the space character is stored as the number:

A

32

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

What is unicode?

A

Unicode is an international standard character set which uses 16 bits to represent the character set.

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

What is the goal of unicode?

A

The goal of unicode is to specify a code matching every character needed by every written human language, It aims to be understood by all computer platforms.

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

The first 256 characters of unicode are…

A

Identical to ASCII

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

What are graphics?

A

Graphics are the display of images and drawings on the computer. It is digitized, meaning that it is turned into a sequence of numbers understandable by the computer.

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

What is a pixel?

A

A tiny square of colour, many of these together can form a digital image.

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

What is β€œpixel” short for?

A

It is short for β€œpicture element”

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

How does a computer know what colour a pixel is?

A

Each pixel has a specific number which tells the computer what colour the pixel should be.

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

What is the process of digitization?

A

The process that takes an image and turns it into a set of pixels.

18
Q

A computer monitor is made up of…

A

A computer monitor is made up of millions of tiny squares (pixels)

19
Q

The more pixels, the…

A

The more pixels, the better an image looks

20
Q

What are the two types of graphics?

A

Bitmapped/raster graphics and Vector graphics.

21
Q

What is a bitmap?

A

A bitmap is a method for storing images using pixels.

22
Q

Why are bitmap graphics called bitmap graphics?

A

Because it is a β€œmap” of where the β€œbits” of information are stored.

23
Q

The information in bitmap graphics are stored as…

A

The information in bitmap graphics are stored as a sequence of numbers defining the colour of each pixel.

24
Q

In a simple black and white image, what does a bitmap need to know?

A

It needs to know if a pixel is β€œon” or β€œoff”, which can be stored as a 0 or a 1.

25
In a colour image, what does a bitmap need to know?
It needs lot of bits, normally 24, to store the colour values of each pixel.
26
What are the common bitmap file formats?
.jpeg, .jpg, .png, .tiff, .gif, .psd (photoshop)
27
What are the common bitmap editing programs?
Microsoft paint, Adobe photoshop, Corel photo paint & Corel photo paint shop pro (what even is corel-), and The GIMP (all hail THE GIMP)
28
What is vector?
Graphics made out of geometric shapes (lines, curves) and coordinates to precisely define the parts of the image. Information is stored as formulas.
29
What are the common vector file formats?
.ai, .cdr, .cmx, .svg, .cgm, .dxf, .wmf
30
What are the common vector editing programs?
Adobe illustrator, CorelDraw, Xara Xtreme, Serif DrawPlus, Inkscape
31
What are some key points about vector images?
* Scalable * Resolution independent * No background * Cartoon-like * Innapropriate for photorealistic images
32
What are some key points about bitmap images?
* Made with pixels in a grid * Resolution dependent * Resizing to a larger size reduces quality * Easily converted * Restricted to rectangle * Minimal support for transparency
33
Which type of graphic is scalable without loss in quality?
Vector
34
Which type of graphic is suitable for photographic images?
Bitmap
35
Which type of graphic takes up more storage?
Bitmap
36
Which type of graphic uses more processing power?
Vector
37
Which type of graphic is suitable for logo designs?
Mostly vector, but bitmap graphics can still be used for logos to create a more natural brand.
38
Which type of graphic is suitable for digital painting/art?
Bitmap
39
Which type of graphic can group individual elements?
Vector
40
Which type of graphic can be more easily edited in any program?
Vector
41
Which type of graphic can create more detailed images?
Bitmap
42
Why do bitmap graphics take up more storage?
Each pixel has to be stored, and even "blank" pixels contribute to file size.