Computer systems Flashcards

1
Q

what does decimal or denary mean

A

numbers written in base 10 using the digits 0 - 9

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

what does binary mean

A

means numbers are written in base 2 using the digits 0 - 1

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

why do computer systems use binary numbers to encode all info

A

its electronically easier to represent only two values
it is easier to build electronic circuitry for carrying out calculations with only two numbers
the advances in hardware mean its possible to store and process large quantities of digital info.

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

How does a computer system know what 10000010100101000100010110010001 represents?

A

It depends largely on what the computer is expecting! Each piece of data will carry a code indicating what type
of data it is

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

what is an integer

A

a number with no fractional part e.g. 76, 2

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

what is 73 in binary

A

01001001

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

what is 10011100 in decimal

A

156

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

whats the largest possible 8 bit binary number

A

11111111 - 255 = 2’8
– 1)

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

what is a real number

A

a number that has a fractional part

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

how is a real number stored

A

using floating point representation using a mantissa and an exponent e.g. 6527.802 = 0.6527802 x 104

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

what is a character

A

– any symbol or letter found on a keyboard. Each character has a unique numerical value inside
the computer e.g. ‘A’ is 01000001 (= 65).

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

what is a computer character set

A

a list of all characters a computer can process and store. Different
computers have different character sets

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

what are control characters

A

do not print on the screen in the normal way. They control certain operations of the
computer such as ‘cursor up’, cursor down’, ‘clear screen’, ‘tab’, ‘return (enter)’, ‘delete’ etc. If you look at
the table below, they are characters with ASCII codes 0 to 31

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

what is extended ASCII

A

american standard code for information interchange
its stored using one byte (8bits)
2’8 = 256 therefore ASCII can represent 256 different characters
In ASCII, codes 0 - 31 are used for control characters e.g. 0001001 is the tab key

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

what are vector graphics

A

graphics made up of objects each having a set of attributes

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

give examples of some vector graphic objects

A

rectangle, ellipse, line, polygon

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

give examples of vector attributes

A

co-ordinates, fill colour, line colour

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

what happens to vector graphic files as the complexity of the graphic increases

A

the file size increases

19
Q

what are bitmap graphics

A

bitmap graphic are graphics made up by pixels

20
Q

what are pixels

A

picture elements

21
Q

explain black and white bitmapped graphics

A

one bit per pixel (0 for white, 1 for black)
number of bits = no of pixels

22
Q

what is a bitmap

A

a grid of bits (1s and 0s) is used to represent the colour of the pixels of the graphic.

23
Q

explain colour bit mapped graphics

A

Several bits are assigned to each pixel to represent the colour of the pixel
- e.g. 10 bits per pixel means 1024 possible colours for each pixel
- True colour means 24 bits per pixel (the limit at which the human eye can distinguish between colours).
This gives a total range of 16777216 colours

24
Q

what is the resolution of a graphic

A

the no of pixels making up the graphics
determines the quality of the graphic
the smaller the pixels the higher the resolution of 8 mega pixels

25
Q

what is bit depth

A

If more than one bit is used for each pixel, then shades of grey or even colour can be represented. For example,
if two bits are used for each pixel then there are four possible combinations (00, 01, 10, 11) which can be used
to represent the colour of a pixel (e.g. white, light grey, dark grey, black). The greater the number of bits used
for each pixel, the greater the variety of colours)

26
Q

how many bits would 128 colours require

A

128 = 27

so 7 bits required

27
Q

What is the bit depth of a graphic allowing up to 1024 colours?

A

Ans: 1024 = 210 therefore bit depth = 10

28
Q

does changing the colours in a bitmapped graphic alter the storage requirement

A

no

29
Q

If the bit depth or
resolution of a bit-mapped graphic changed would the file size change

A

yes

30
Q

As bit depth and resolution increases what will happen

A

the quality of the image will increase but the file size will too,

31
Q

what happens when two shapes overlap in bit mapped graphics

A

package, the shape on top will “rub out”

32
Q

what happens when two shapes overlap in vector graphic

A

individual objects can be selected and layered

33
Q

what type of graphic can you edit at pixel level

A

bit mapped graphics

34
Q

what happens to the file size of a bitmapped graphic

A

stays the same regardless of the amount of detail in the
graphic because each pixel is stored regardless of its colour

35
Q

what happens to a vector graphic file size

A

it increases as
objects are added

36
Q

what is the ALU

A

Arithmetic logic unit

37
Q

what does the ALU do

A

carries out calculations and makes decisions and logical operations

38
Q

whats the control unit

A

controls all the parts of the processor and makes sure that the program instructions are synchronized to be executed in the correct order.
increases as
objects are added

39
Q

whats the register

A

Registers are storage locations inside the processor chip that hold data while the processor is using it

40
Q

Whats the MAR

A

Memory Address Register.

41
Q

what does the MAR do

A

holds the address of the location in memory that is currently being
accessed

42
Q

whats the MDR

A

memory data register

43
Q

what does the MDR do

A

holds the contents of the location currently being accessed

44
Q
A