Save
Computer Science
Save
Share
Learn
Content
Leaderboard
Share
Learn
Created by
Caylin Hindle
Visit profile
Subdecks (2)
Paper 1
Computer Science
1022 cards
Paper 2
Computer Science
409 cards
Cards (1720)
What is the
Von Neumann Architecture
?
A computer architecture where data and
instructions
are stored in the same memory.
View source
What does the
Fetch-Decode-Execute Cycle
represent?
It represents the continuous process of fetching instructions, decoding, and executing them by the
CPU
.
View source
What is the role of the
Central Processing Unit
(
CPU
)?
It carries out all of the processing in a computer.
View source
What does the
Arithmetic and Logic Unit
(
ALU
) do?
It performs all the
arithmetic
and
logical
operations in the CPU.
View source
What is the function of the
Control Unit
(CU)?
It controls the flow of data within the
CPU
and decodes
instructions
.
View source
What is the purpose of the
Accumulator
(ACC)?
It is a temporary store for the results from the
ALU
.
View source
What does the
Program Counter
(PC) do?
It stores the address of the next instruction to be
processed
.
View source
What is the function of the
Memory Address Register
(
MAR
)?
It stores the address for data to be fetched from or sent to memory.
View source
What does the
Memory Data Register
(
MDR
) do?
It stores data that has been fetched from or is to be sent to memory.
View source
What are the steps in the
Fetch-Decode-Execute Cycle
?
Fetch: Copy address from
PC
to
MAR
,
CU
fetches data to
MDR
, increment PC.
Decode: CU decodes the instruction in the MDR.
Execute: Execute the instruction (load data, move data, or perform calculations).
View source
What is
clock speed
in relation to a
CPU
?
Clock speed is the number of instructions a single
processor core
can carry out per
second
.
View source
How is clock speed measured?
Clock speed
is measured in
Gigahertz
(GHz), which equals 1
billion
cycles per second.
View source
What can happen if a
CPU
is
overclocked
?
It can lead to
overheating
and cause the system to crash.
View source
What are the main factors affecting
CPU
performance?
Clock Speed
: Higher speeds allow more instructions processed per second.
Cache Size
: More and faster cache memory leads to quicker access to data.
Number of Cores
: More cores enable faster processing of instructions.
View source
What are the levels of
cache memory
?
L1
: Extremely fast but small, most expensive.
L2
: Fairly fast and medium-sized.
L3
: Slower than L2 but holds the most, least expensive.
View source
What is the role of
cache memory
in a
CPU
?
Cache memory stores frequently used instructions and data for quick access by the CPU.
View source
What is a
dual-core
processor?
A dual-core processor has 2
processing units
within it.
View source
How does the number of
cores
affect
CPU
performance?
The more cores a CPU has, the more instructions can be processed
simultaneously
.
View source
What is an
embedded system
?
An embedded system is a
computer system
with a dedicated function as part of a larger system.
View source
What are examples of
embedded systems
?
Dishwasher
TVs
Microwave
Satellite Navigation
View source
What is
Random Access Memory
(
RAM
)?
RAM is the main memory in a computer that can be written to or read from.
View source
What is
virtual memory
?
Virtual memory is a part of the hard disk used as a temporary store for data when
RAM
is insufficient.
View source
What is the main disadvantage of using
virtual memory
?
It causes a
delay
which slows the system down.
View source
What is
magnetic storage
?
Magnetic storage is a common, reliable, and cost-effective storage method using
rotating magnetic platters
.
View source
What is
Read Only Memory
(
ROM
)?
ROM is
non-volatile
memory that cannot be written to and contains the
BIOS
needed for booting up.
View source
What is the difference between
volatile
and
non-volatile
memory
?
Volatile memory loses all data when there is no power, while non-volatile memory retains data without power.
View source
What is
solid-state storage
?
Solid-state storage uses
flash memory
and has no moving parts, making it faster than
magnetic storage
.
View source
What is
optical storage
?
Optical storage uses
laser light
to read data from reflective disks like
CDs
and
DVDs
.
View source
What are the three formats of CDs and DVDs?
ROM
(Read Only)
R (Write Once/Read Many)
RW
(Rewriteable)
View source
What are the characteristics of different storage media?
HDD
:
Capacity
:
500MB
–
4TB
Durability: Poor
Speed: Average
Flash Memory
:
Capacity:
2
–
64GB
Durability: Excellent
Speed: Fast
CD/DVD/Blu-Ray
:
Capacity:
650MB
/
9GB
/
50GB
Durability: Average
Speed: Poor
View source
What are the units of data in computing?
Bit
(b): A single binary digit
Nibble
: 4 bits
Byte
(B): 8 bits
Kilobyte
(kB): 1000 bytes
Megabyte
(MB): 1000 kB
Gigabyte
(GB): 1000 MB
Terabyte
(TB): 1000 GB
Petabyte
(PB): 1000 TB
View source
How do you convert
Denary
to
Binary
?
Place a 1 or 0 in the table based on whether the number is higher than the binary
place values
.
View source
How do you convert
Binary
to
Denary
?
Add together all the
values
of the binary digits that have a 1 underneath.
View source
How do you convert
Hexadecimal
to
Binary
?
Split the hexadecimal number into parts and write them into a
4-bit
binary table.
View source
How do you convert
Hexadecimal
to
Denary
?
Convert the hexadecimal to
binary
and then convert the binary to denary.
View source
What are the rules for
Binary Addition
?
0 + 0 = 0,
1
+ 0 or 0 + 1 = 1, 1 + 1 = 10 (
carry
1), 1 + 1 + 1 = 11 (carry 1).
View source
What is an
overflow error
in a CPU?
An overflow error occurs when a calculation exceeds the maximum capacity of the CPU's
bits
.
View source
What happens during an
overflow error
?
The
CPU
drops the overflow
digit
because it cannot store it anywhere.
View source
What is the
binary
representation of the
decimal
number
128
?
10000000
View source
What is the
binary
representation of the
decimal
number
64
?
01000000
View source
See all 1720 cards