Software Flashcards

1
Q

What does the boot loader/bootstrap loader do?

A

It performs the boot sequence which ends with the entire OS being loaded

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

What does BIOS stand for, and what is its purpose?

A

BIOS (Basic Input/Output System) initializes and tests hardware during the boot process and provides runtime services for the operating system.

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

What are the key functions of the BIOS?

A
  • Power-On Self-Test (POST).
  • Obtain an inventory of the hardware from the CMOS
  • Test the hardware
  • BIOS locates the MBR, which is then responsible for loading+executing the OS kernel, which continues the start-up procedure
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What does POST stand for, and what does it do?

A

POST (Power-On Self-Test) checks and verifies the integrity of hardware components before booting the operating system.

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

What is CMOS, and what is its role in a computer?

A

CMOS (Complementary Metal-Oxide-Semiconductor) is battery-backed, volatile memory.
It stores
- hardware settings (eg Disk drive)
- user settings )date and time)

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

What is MBR, and what does it do?

A

MBR (Master Boot Record) is the first sector of a storage device, containing the bootloader and partition table.

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

What is the kernel in an operating system?

A

The kernel is the core part of the operating system that manages hardware resources and facilitates communication between hardware and software.

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

What does UEFI stand for, and how is it different from BIOS?

A

UEFI (Unified Extensible Firmware Interface) is a modern replacement for BIOS
- faster boot times
- support for larger drives
- graphical interface

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

What are interrupts?

A

Interrupts are signals sent to the CPU to indicate the need for the CPU’s attention

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

What does IRQ stand for, and what is its purpose?

A

IRQ (Interrupt Request Line) is a hardware signal sent to the CPU to handle specific tasks from devices.

They are managed through the Advanced Programmable Interrupt Controller (APIC).

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

What is an I/O range?

A

I/O range refers to a set of memory addresses assigned to hardware devices for communication with the CPU.

It prevents conflicts by ensuring unique address ranges for each device.

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

What is multitasking in computing?

A

The computer appearing to run more than one program at the same time

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

What is a process?

A

A sequence of instructions that can be executed by the CPU

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

What is multiprocessing?

A

In the same computer different processes can be executed by different CPUs or CPU cores at the same time.

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

What is Parallel processing?

A

Breaks up a task into smaller pieces and runs them simultaneously on separate processors or computers.

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

What is a thread?

A

A part of a larger program that runs independently, but simultaneously with other parts of the program.

17
Q

What is Multithreading?

A

The ability of an Operating System to let programs split themselves up into multiple tasks and to allow these tasks to be executed independently

18
Q

What is a program?

A

A set of instructions to accomplish a task. It can consist of multiple processes

19
Q

What is virtual memory?

A

Space on the Hard disk
Storage used as RAM when the computer has used all its RAM. It is not RAM.

a method that computers use to manage storage space to keep systems running quickly and efficiently

20
Q

What does an interpreter do?

A

An interpreter reads each program line by line, converts it to machine code and executes it.

21
Q

What is Machine Code Generation?

A

A certain type of compiler reads the whole program and creates a new file with an extension of exe that the user can run directly.

22
Q

What other type of compiler is there, aside from Machine Code Generation?

A

Intermediate Representations
The languages is first compiled to bytecode. This is then compiled to a file an extension of class.

23
Q

What are the four stages of the machine cycle?

A
  1. FETCH
  2. DECODE
  3. EXECUTE
  4. STORE
24
Q

Define DBMS

A

A Database Management System (DBMS) is a software system that allows users to create, define, manipulate and manage databases.