IGCSE Computer Science C4

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/36

flashcard set

Earn XP

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

37 Terms

1
New cards

Describe the difference between system software and application software.

  • System software controls and manages hardware operations and provides a platform for application software.

  • Application software enables the user to perform specific tasks like document creation or web browsing.

2
New cards

Give examples of system software.

  • Operating systems (e.g., Windows, Linux),

  • device drivers,

  • antivirus software,

  • defragmentation tools,

  • backup utilities.

3
New cards

Give examples of application software.

  • Word processors,

  • spreadsheets,

  • web browsers,

  • media players,

  • email clients.

4
New cards

Describe the role of an operating system in managing files.

  • Organises files and folders,

  • allows saving, renaming, and deletion,

  • maintains file systems (e.g., FAT32, NTFS)

  • handles file permissions.

5
New cards

Describe how an operating system handles interrupts.

It responds to signals from hardware or software,

pauses the current task,

runs the Interrupt Service Routine (ISR),

resumes the original task.

6
New cards

Describe how an operating system manages peripherals.

Controls external devices using device drivers

manages communication between hardware and software.

7
New cards

Describe how memory is managed by the operating system.

Allocates RAM to programs,

frees memory when tasks end,

uses virtual memory when RAM is full,

prevents crashes.

8
New cards

Describe how the operating system manages multitasking.

Uses CPU scheduling to run multiple tasks simultaneously while keeping them isolated.

9
New cards

Explain how an OS provides a platform for applications.

It launches and runs programs,

gives access to CPU, memory, and I/O, and uses APIs for system interaction.

10
New cards

Describe how the operating system provides system security.

Prevents unauthorised access using passwords and encryption,

protects system files,

manages permissions.

11
New cards

Explain how an OS manages user accounts.

Supports multiple profiles,

controls access rights and settings,

handles logins and passwords.

12
New cards

Describe the role of hardware, firmware, and OS in running software.

Hardware:

- The physical components of the computer (CPU, RAM, motherboard, etc.)

- Runs the bootloader (firmware)

Firmware:

- Stored on a ROM chip (e.g. BIOS/UEFI)

- Executes as soon as the system is powered on

- Loads the operating system from storage into memory

- The bootloader (firmware) is run on the hardware

OS:

- Loaded by firmware during startup

- Provides a platform and environment to run applications

- The OS is run on the firmware

13
New cards

Describe how an interrupt is generated.

A signal sent to the CPU from hardware (e.g., key press) or software (e.g., error) to request immediate attention.

14
New cards

Describe how the CPU handles an interrupt.

CPU pauses the current task,

saves its state,

runs the ISR,

then resumes the original task.

15
New cards

Explain what is meant by a high-level language.

- Uses English-like commands

- Machine-independent

- Examples: Python, Java, C++

16
New cards

Explain what is meant by a low-level language.

- Closer to machine code

- Includes Assembly Language

 - Used for hardware-specific tasks

17
New cards

Describe the features of assembly language.

- A form of low-level language

- Uses mnemonics instead of binary

- Specific to CPU architecture

18
New cards

Explain the role of an assembler.

- Translates assembly language into machine code

- Converts mnemonics into binary instructions

19
New cards

Describe how a compiler works.

Translates the whole program at once - Creates an executable file

- Faster once compiled

- Reports all errors after full translation

- Produces an independent executable file

Used when distribution/execution speed is important

20
New cards

Describe how an interpreter works.

- Translates and runs code line-by-line

- Slower during execution

- Stops immediately when an error is found

- No standalone file produced

- Used during development/testing/debugging

21
New cards

Explain the advantages and disadvantages of a compiler

Advantages:

• Produces an executable file that runs independently of the source code

• Program runs faster after compilation

• All errors are shown together after compilation

Disadvantages:

Harder to debug – errors are reported all at once

Needs to recompile if the program is changed

• Not suitable for testing individual parts during development

22
New cards

Explain the advantages and disadvantages of an interpreter

Advantages:

Easier to debug – errors are shown line by line

• More portable – can run on any system with the same interpreter

No need to compile entire program to test parts of it

Disadvantages:

Slower execution as each line is translated every time it runs

Source code must be present to run

Does not produce an independent executable file

23
New cards

Describe the role of an IDE using code editor

- Area to write/edit code

 - Often highlights syntax and errors

24
New cards

Describe how a compiler reports errors.

After translating the whole program, it lists all errors found so that the programmer can correct them before execution.

25
New cards

Explain one advantage of using an IDE during development.

An IDE provides error diagnostics and suggestions, enabling faster debugging and improved code quality.

26
New cards

Explain how the operating system prevents unauthorized access.

It uses features such as passwords, account permissions, and encryption to restrict access to system functions and files.

27
New cards

Describe how the OS uses virtual memory to manage memory.

When RAM is full, the OS swaps data not in current use to secondary storage and swaps it back when needed, allowing more programs to run.

28
New cards

Explain how HTTPS secures data transmitted over the internet.

HTTPS uses SSL/TLS encryption to encode data during transmission, preventing interception and ensuring confidentiality.

29
New cards

Describe the purpose of domain name system (DNS) in retrieving web pages.

DNS converts a human-readable domain name into an IP address, allowing the browser to locate the correct web serve

30
New cards

Describe the role of an IDE using Run-time environment

- Lets you run the program inside the IDE

- Simulates how the program works

31
New cards

Describe the role of an IDE using translators

May include a compiler and/or interpreter to run the program

32
New cards

Describe the role of an IDE using error diagnostics

- Identifies and highlights errors

- Often gives suggestions or explanations

33
New cards

Describe the role of an IDE using auto-completion

- Suggests keywords or variables while typing

- Speeds up coding

34
New cards

Describe the role of an IDE using auto-correction

Fixes small syntax errors automatically (like spelling correction)

35
New cards

Describe the role of an IDE using pretty print

- Automatically formats code for better readability

- Indents and spaces neatly

36
New cards

Explain the advantages and disadvantages of high-level language

Advantages:

- Easier to read/write/debug

- Portable between systems

- More abstract from hardware

Disadvantages:

Slower execution

- Requires translator (compiler or interpreter)

37
New cards

Explain the advantages and disadvantages of low-level language

Advantages:

- Faster execution

- Direct control of hardware

- Efficient memory use

Disadvantages:

- Hard to read/write/debug

- Not portable

- Longer development time