Intro and Chapter 1 Data representation Flashcards

1
Q

What are the major components of a personal computer (PC)?

A

Computer case, computer case fan, motherboard, central processing unit (CPU), CPU cooling fan, power supply unit (PSU), random access memory (RAM), graphics card, hard drive (or SSD), optical drive (often without)

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

What is the purpose of a computer case?

A

Stores all other components, prevents too much dust getting into them

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

What is the purpose of a computer case fan?

A

Spins to keep components within case cool

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

What is the purpose of a motherboard?

A

Allows components to be connected and communicate, allows them to receive power from PSU

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

What is the purpose of a central processing unit (CPU)?

A

Responsible for operation of each fetch-decode-execute cycle carried out

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

What is the purpose of a CPU cooling fan?

A

Cools CPU and prevents it from getting too hot, keeping it at best temperature to operate

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

What is the purpose of a power supply unit (PSU)?

A

Powers motherboard to allow it to pass power to other components

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

What is the purpose of random access memory (RAM)?

A

Temporarily stores data waiting to be processed

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

What is the purpose of a graphics card?

A

Responsible for producing images seen on computer screen

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

What is the purpose of a hard drive?

A

Permanently stores all files and software used

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

What do most computers have to store files and software permanently? (choice)

A

A hard disk drive (HDD) or a solid state drive (SSD)

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

What is the purpose of an optical drive?

A

Device in which optical media, like CDs, is inserted into, to be read by the computer

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

What is hexadecimal, what does it use and why is it used?

A

A base-16 number system using values 0-9 and characters A-F, used to represent values for programmers, takes up less space on screen or paper, easier for programmers to read, write, understand, easier to debug and locate errors in data

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

What is binary and what does it use?

A

A base-2 number system using the values 0 and 1, where the units increase by the power of 2

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

What is analogue data?

A

A continuous stream of data processed by humans

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

What is a logic gate and what data can they process?

A

A very small component in a computer system controlling electricity flow that can only process digital data

17
Q

What is digital data and what does it use?

A

Discrete data that only has values 1 and 0

18
Q

What is a register?

A

A small component in a computer system used to temporarily store data

19
Q

What is denary and what does it use?

A

A base-10 number system using values 0 - 9

20
Q

What values does a computer system use?

A

Binary number system

21
Q

How is a binary number referred to in relation to the number of bits it has, and what are these?

A

4-bit binary number has 4 values either 1 or 0, 8-bit binary number has 8 values either 1 or 0

22
Q

How do you convert a denary number to binary?

A

Compare the denary number to the first (leftmost) binary unit, if the denary is greater subtract the binary unit from it, write a 1 in that position, and move to the next binary unit. If the denary is smaller, write a 0 and move on with no subtraction. Repeat until the end of the binary units is reached

23
Q

How do you convert a binary number to denary?

A

Add together all units in the binary number represented by the value 1

24
Q

How are denary numbers converted to hexadecimal generally?

A

Denary numbers less than 16 can be directly converted to hexadecimal, greater than 16 numbers generally converted to binary first, then to hexadecimal, using 4-bit binary numbers

25
Q

How is hexadecimal converted to denary?

A

Hexadecimal numbers less than 16 can be converted to denary directly, greater than 16 generally converted to binary first, then to denary, using 4-bit binary numbers

26
Q

What is a MAC address?

A

Unique address given to a computer at the manufacturing stage, used to identify the computer

27
Q

How does binary addition work?

A

Uses four rules: 0+0=0; 1+0=1; 1+1=10 (2 is 10 in binary); 1+1+1 = 11 (3 is 11 in binary)

28
Q

What is an overflow error?

A

A type of error which occurs when a number larger than what a register can store is generated

29
Q

What is a logical binary shift and what do they do?

A

Logical binary shift moves binary values in number to left or right; leftward shift doubles number, rightward shift halves number; some binary values removed and empty spaces created with each shift

30
Q

What is a potential problematic effect of a logical binary shift?

A

Vital bits can be removed from the register, therefore data can be lost. Consequently, leftward and rightward shifts don’t always double and halve the number

31
Q

How is a negative number represented in binary?

A

Method of two’s complement used; take positive number in binary, invert all values in binary (1s and 0s swapped); 1 added to result; outcome is binary representation of negative number using two’s complement method