Revision Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

What is a CPU

A

A CPU is the processor of the computer. It contains millions upon millions of transistors. It executes a lot of the instructions is told to do

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

What is the fetch-decode and execute cycle

A

The fetch cycle takes the address required from memory, stores it in the instruction register, and moves the program counter on one so that it points at the next instruction

The control unit checks the instruction in the instruction register. The instruction is decoded to determine the action that needs to be carried out

The actual actions that happen during the execution cycle depend on the instruction itself

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

What is a register

A

A register is a fast access temporary data store

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

Storage types

A
RAM
ROM
Flash memory
RAM cache memory
Data capicity
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Flash drive storage

A

2 GB - 64 GB

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

External Hard Drive

A

Has a capacity of 5000 MB - 4 TB

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

CD/ DVD/blu-ray disk storage

A

650 MB(CD storage) 9 GB (DVD) and 50GB(blu-ray)

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

Magnetic tape storage

A

200 GB - 400 GB

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

LAN network

A

It is a network, LAN is shortened for Local Area Network. The computer systems are located relatively close to each other. An example could be that the systems are in the same building

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

WAN network

A

WAN is shortened for Wide Area Network. The computer Systems are located a fair distance away from each other. An example of a WAN is separate computer systems in buildings all over the country or in other countries

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

Algorithms

A

Algorithms are sets of instructions that can be used to solve a given problem. In order for the algorithm to work the instructions must be clear and in the correct order to produce the solution

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

For loops

A

Loops that you can set to how many times you want it to repeat something “for i in range (…)”

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

While loops

A

Loops that can go on forever unless it is broken

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

Variable scope

A

When a value belongs in a certain variable. An example could be
j=0

while j<10:
       for i in range(10):
             print("value",i, "is:", i+1)
             j = j+1
print()
print("However, the last i was:",i)

In this program j belongs to while loops. i belongs to for loop

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

IDE’s

A

IDE’s are within a program. It can debug code and also be a text editor. An IDE is python and Java is that it highlights the important parts of the program e.g it highlights the function print

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