Computing Systems Flashcards

1
Q

In what order does the integer to binary conversion table go?

A

128 - 64 - 32 - 16 - 8 - 4 - 2 - 1

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

How many bits does extended Ascii use to store characters?

A

8 bits

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

What is a printable character?

A

Any character that can be displayed on the screen (!, #, A, @)

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

What is a control character?

A

A character that tells the computer to do something. (tab, enter, escape, home, page up, page down)

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

How are Bit-Map graphics stored?

A

As a 2D array of pixels.

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

How are vector graphics stored?

A

Stored as a set of objects in the computers memory. Each object is stored as a set of attributes.

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

What are the 4 objects I need to know?

A

Rectangle, Ellipse, Line, Polygon

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

What are the 3 Attributes of objects I need to know?

A

Co-ordinates, Fill colour, Line colour

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

What 4 things does the CPU contain?

A

ALU (Arithmetic Logic Unit), Registers, Control Unit and the Memory Unit.

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

What does the Control Unit do?

A

Controls the other components in the computer and tells them what to do.

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

What does the ALU (Arithmetic Logic Unit) do?

A

Calculate any arithmetic or evalulate a logic operation.

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

What do the Registers do?

A

They are a small, temporary, storage unit used to store data for the CPU.

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

What does the Memory Unit contain?

A

RAM (Random access memory) & ROM (Read-only Memory)

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

What is RAM used for?

A

Used to store the instructions/data of any currently running programs.

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

How is data stored in RAM?

A

In memory locations in RAM using a unique address.

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

What is ROM used for?

A

Used to store things the computer should not forget (where to load OS from)

17
Q

Can instructions in RAM be deleted/edited?

18
Q

Can instructions in ROM be changed/edited?

19
Q

What is the Address Bus?

A

The address bus is a uni-directional bus that transfers the address (location) of the data the CPU wants to access from the CPU to the RAM.

20
Q

What is the Data Bus?

A

The data bus is a bi-directional bus that transfers data between the CPU and RAM.

21
Q

What is a Translator used for?

A

Used to run programs created by Humans by converting High-Level Language to Low-Level language.

22
Q

What is an interpreter?

A

An interpreter is a translator that converts high-level language line by line into a low-level language, as the program is running.

23
Q

What are the Two Advantages of interpreters?

A

Used during development as they are quicker at running programs. Easy to locate errors as it highlights which line(s) cause the program to fail.

24
Q

What are the two disadvantages of interpreters?

A

Run time is slower, interpreters uses up some memory.

25
What is a Compiler?
Compilers convert a whole program at one time into a Low-Level Language.
26
What are the two Advantages of a compiler?
Execution of the program is faster, original program source code is unavailable to view (people can't plagarise it)
27
What is the disadvantage of a compiler?
Compiler cannot find errors in the source code (errors must be fixed before compiling)
28
What are 3 ways you can reduce a computers environmental impact?
Reduce the brightness settings on the monitor, Power down monitor after a set inactivity time, Power down the computer after a set inactivity time.
29
What is a firewall?
A firewall is a network security system used to prevent unauthorized access to or from a private network/computer.
30
What are the two ways firewalls protect a network or computer?
Blacklisting/Whitelisting specific IP Addresses, Blacklisting or Whitelisting traffic from certain ports.
31
What is the purpose of encryption?
Used to encrypt (make unreadable) data to prevent unauthorised people from using the data.