REVISION COMPUTING DO EVERYDAY Flashcards

Assessment

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

Define System Architecture

A

The design and structure of a computer system, describing how different parts like the CPU, memory, and I/O devices work together.

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

What is the purpose of the CPU?

A

To carry out instructions by performing calculations and processing data; it’s known as the “brain” of the computer.

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

What are the three main parts of the CPU?

A

Control Unit (CU), Arithmetic Logic Unit (ALU), and Registers.

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

Explain the role of the Control Unit (CU)

A

Directs operations within the CPU by managing data flow between the CPU, memory, and other devices.

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

What is the difference between RAM and ROM?

A

RAM is temporary and volatile, used for active processes. ROM is permanent and non-volatile, storing essential startup instructions.

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

Define Cache Memory

A

A small, high-speed memory inside the CPU that stores frequently used data for faster access.

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

Why is primary storage faster than secondary storage?

A

Primary storage (like RAM) is directly connected to the CPU, allowing faster data access than secondary storage (e.g., hard drives).

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

What are examples of secondary storage devices?

A

Hard Disk Drives (HDD), Solid State Drives (SSD), CDs, DVDs, and USB flash drives.

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

Explain the purpose of virtual memory

A

A section of the hard drive used as temporary RAM when actual RAM is full, allowing more applications to run.

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

Define Binary and why computers use it

A

A number system using only 0s and 1s; computers use binary to represent data because it’s simple and reliable for digital circuits.

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

What is network security?

A

Measures taken to protect a computer network from unauthorized access, attacks, and data breaches.

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

Define Firewall

A

A security system that monitors and controls incoming and outgoing network traffic based on security rules.

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

What is phishing?

A

A cyber-attack where attackers impersonate trusted entities to trick people into providing personal information.

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

What is digital ethics?

A

The study of how technology impacts behavior, privacy, and morals in society.

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

Define the Digital Divide

A

The gap between those who have access to technology and the internet and those who do not, often influenced by socioeconomic factors.

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

What is the environmental impact of e-waste?

A

Electronic waste contributes to pollution and resource depletion when discarded improperly, harming ecosystems.

17
Q

What is an algorithm?

A

A set of instructions designed to perform a specific task or solve a problem.

18
Q

Define flowchart

A

A visual representation of the steps in an algorithm, using shapes and arrows to map out processes.

19
Q

What does pseudocode mean?

A

A way to write algorithms using simplified code-like language that can be easily translated into actual programming code.

20
Q

Explain what an IF statement does

A

Checks a condition; if true, it executes a specific block of code; if false, it skips or runs an alternative block.

21
Q

Define a For Loop

A

A loop that repeats a block of code a specific number of times, based on a set starting and ending point.

22
Q

What is a While Loop?

A

A loop that continues to run as long as a certain condition is true.

23
Q

Describe what a Sub-program is

A

A block of code written separately from the main program to perform a specific task, often called a function or procedure.

24
Q

What is the purpose of Input and Output in programming?

A

receives data from the user, while Output displays or sends data to the user or another system.