Computer Science - Representing Characters and Images in a computer + graphics ๐Ÿ’ป Flashcards

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
Q

In a colour image, what does a bitmap need to know?

A

It needs lot of bits, normally 24, to store the colour values of each pixel.

26
Q

What are the common bitmap file formats?

A

.jpeg, .jpg, .png, .tiff, .gif, .psd (photoshop)

27
Q

What are the common bitmap editing programs?

A

Microsoft paint, Adobe photoshop, Corel photo paint & Corel photo paint shop pro (what even is corel-), and The GIMP (all hail THE GIMP)

28
Q

What is vector?

A

Graphics made out of geometric shapes (lines, curves) and coordinates to precisely define the parts of the image. Information is stored as formulas.

29
Q

What are the common vector file formats?

A

.ai, .cdr, .cmx, .svg, .cgm, .dxf, .wmf

30
Q

What are the common vector editing programs?

A

Adobe illustrator, CorelDraw, Xara Xtreme, Serif DrawPlus, Inkscape

31
Q

What are some key points about vector images?

A
  • Scalable
  • Resolution independent
  • No background
  • Cartoon-like
  • Innapropriate for photorealistic images
32
Q

What are some key points about bitmap images?

A
  • 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
Q

Which type of graphic is scalable without loss in quality?

A

Vector

34
Q

Which type of graphic is suitable for photographic images?

A

Bitmap

35
Q

Which type of graphic takes up more storage?

A

Bitmap

36
Q

Which type of graphic uses more processing power?

A

Vector

37
Q

Which type of graphic is suitable for logo designs?

A

Mostly vector, but bitmap graphics can still be used for logos to create a more natural brand.

38
Q

Which type of graphic is suitable for digital painting/art?

A

Bitmap

39
Q

Which type of graphic can group individual elements?

A

Vector

40
Q

Which type of graphic can be more easily edited in any program?

A

Vector

41
Q

Which type of graphic can create more detailed images?

A

Bitmap

42
Q

Why do bitmap graphics take up more storage?

A

Each pixel has to be stored, and even โ€œblankโ€ pixels contribute to file size.