6: Fundamentals of Computer Systems Flashcards
Hardware
The physical components of a computer system
Software
Instructions / code / programs
System Software
Software used in the management of a computer system
Application Software
Software for carrying out user-oriented tasks
Operating System (3)
- Provides a user interface between the user and the hardware
- Runs application programs
- Manages resources / hardware
Utility Program (1, 1:4)
- Programs designed to help maintain the computer
- Examples include:
• Virus scanner
• Disk defragmenter
• System monitor
• File managers
Library Program (2)
- Are collections of resources used to develop software
- Include pre-written code and subroutines
Translators (4)
- Convert source code into machine code
- Assembler converts assembly code into machine code
- Compiler converts source code written in a high-level language into machine code
- Interpreter treats high level language source code as data and interprets that data as instructions to its own routine
Examples of System Software (4)
- Operating systems (OSs)
- Utility programs
- Libraries
- Translators (compilers, assemblers, interpreters)
The operating system hides ____
The complexities of the hardware
OS Functions (8)
- To hide the complexities of the hardware from the user
- To call appropriate interrupt handler when an interrupt occurs
- To allocate processors to processes
- To allocate memory to processes
- To allocate I/O devices to processes
- To allocate space on a storage device to files
- Installation of new software and managing updating software
- Manage power consumption
Classification of Programming Languages (2)
- Low-level languages: are based upon the instruction set of the computer
- High-level languages: are problem-oriented and close to a natural language
Low-Level Languages (2)
- Machine-code
- Assembly language
High-level languages include ____
Imperative high-level language
Machine-Code Language
Is written in binary and doesn’t require translation to be run
Assembly Language
Help programmers write machine-code using a set of ‘mnemonics’, that represent a binary, machine-code statement
Low-Level Languages + (4)
- Programs give better access to computer hardware
- Programs may execute more quickly as they require less translation
- Some programs can only be written using a low-level language particularly some parts of a computer’s operating system
- Programs may use less memory
High-Level Languages + (8)
- Programs are portable
- Program code is easier to understand
- Faster development time
- Availability of flow control structures
- Improved features for supporting modularity
- Built-in support for data structures
- Language is problem-oriented
- Support for different paradigms
Imperative High-Level Language (4, 1:4)
- Instructions are executed in a programmer-defined order
- Imperative languages describe how to solve a problem
- High-level languages use English-like keywords
- They support structured statements
- They support the use of:
• Local variables
• Parameters
• Named constants
• Indentation
One statement in an imperative high-level language corresponds to ____
Many low-level language statements
Compilation +/- (4)
+ Commercial software is compiled before distribution to protect the source code
- Errors are reported at the end of compilation, which makes debugging harder
+ Object code runs very quickly but programs take long to compile
+ Users don’t need a translator to run object code
Interpretation +/- (4)
+ Developers can quickly test the program without having to translate the entire program every time
+ Errors appear as they occur so it is easy to identify and fix them
- Interpreting source code is slower than running object code
- Users must have a translator to run the source code
Intermediate Language (3)
- Some compilers produce an intermediate language (e.g., bytecode) as their final output
- This is because the code may need to run on multiple platforms
- To execute it, a virtual machine performs just in time translation to convert the intermediate language to object code and execute it
Source Code vs Object (Executable) Code
Source code is code in its original form, written by the programmer whereas object code is compiled source code, which can be executed
Logic Gates (6)
- NOT
- AND
- OR
- XOR
- NAND
- NOR
Truth Table for NOT Logic Gate
Input | Output
0 | 1
1 | 0
Truth Table for AND Logic Gate
Input | Input | Output
0 | 0 | 0
0 | 1 | 0
1 | 0 | 0
1 | 1 | 1
Truth Table for OR Logic Gate
Input | Input | Output
0 | 0 | 0
0 | 1 | 1
1 | 0 | 1
1 | 1 | 1
Truth Table for XOR Logic Gate
Input | Input | Output
0 | 0 | 0
0 | 1 | 1
1 | 0 | 1
1 | 1 | 0
Truth Table for NAND Logic Gate
Input | Input | Output
0 | 0 | 1
0 | 1 | 1
1 | 0 | 1
1 | 1 | 0
Truth Table for NOR Logic Gate
Input | Input | Output
0 | 0 | 1
0 | 1 | 0
1 | 0 | 0
1 | 1 | 0
Diagram for NOT Logic Gate
https://isaaccomputerscience.org/api/v2.19.3/api/images/content/computer_science/computer_systems/boolean_logic/figures/sys_bool_logic_gates_not.svg
Diagram for AND Logic Gate
https://isaaccomputerscience.org/api/v2.19.3/api/images/content/computer_science/computer_systems/boolean_logic/figures/sys_bool_logic_gates_and.svg
Diagram for OR Logic Gate
https://isaaccomputerscience.org/api/v2.19.3/api/images/content/computer_science/computer_systems/boolean_logic/figures/sys_bool_logic_gates_or.svg
Diagram for XOR Logic Gate
https://isaaccomputerscience.org/api/v2.19.3/api/images/content/computer_science/computer_systems/boolean_logic/figures/sys_bool_logic_gates_xor.svg
Diagram for NAND Logic Gate
https://isaaccomputerscience.org/api/v2.19.3/api/images/content/computer_science/computer_systems/boolean_logic/figures/sys_bool_truth_tables_nand2_2.svg
Diagram for NOR Logic Gate
https://isaaccomputerscience.org/api/v2.19.3/api/images/content/computer_science/computer_systems/boolean_logic/figures/sys_bool_truth_tables_nor2_labelled.svg
Boolean Expressions (6)
- A AND B = A ⋅ B
- A OR B = A + B
- NOT A = ̅A
- A NAND B = ̅A ̅⋅ ̅B
- A NOR B = ̅A ̅+ ̅B
- A XOR B = A ⊕ B
____ can be Used to Simplify Simple Boolean Expressions
Truth tables
Boolean Identities (5)
- Commutative law
- Associative law
- Absorption law
- Distributive law
- De Morgan’s law
Commutative Law
AND: A ⋅ B = B ⋅ A
OR: A + B = B + A
Associative Law
AND: (A ⋅ B) ⋅ C = A ⋅ (B ⋅ C)
OR: (A + B) + C = A + (B + C)
Absorption Law
AND: A ⋅ (A + B) = A
OR: A + (A ⋅ B) = A
Distributive Law
AND: A + (B ⋅ C) = (A + B) ⋅ (A + C)
OR: A ⋅ (B + C) = (A ⋅ B) + (A ⋅ C)
De Morgan’s Law
AND: ̅A ̅⋅ ̅B = ̅A + ̅B
OR: ̅A ̅+ ̅B = ̅A ⋅ ̅B
Order of Boolean Operations (4)
- Brackets (first)
- NOT
- AND
- OR
Compilation vs Interpretation (6)
- A compiler produces object code whilst an interpreter does not
- A compiler translates the whole of the source code into object code whilst an interpreter translates line by line
- The object code produced by a compiler will execute faster, than interpreting the source code
- An interpreter can run parts of a program whilst there are syntax errors in other parts of it, which a compiler cannot
- Once code has been compiled it does not need to be recompiled whilst an interpreter has to translate code every time a program is run
- If using an interpreter, it needs the source code each time it executes the program whereas a compiler only needs to use the source code once
Binary Half-Adder Circuit
https://isaaccomputerscience.org/api/v3.1.6/api/images/content/computer_science/computer_systems/boolean_logic/figures/isaac_cs_sys_bool_binary_half_adder.svg
https://isaaccomputerscience.org/api/v3.1.6/api/images/content/computer_science/computer_systems/boolean_logic/figures/isaac_cs_sys_bool_binary_full_adder.svg
Binary Full-Adder Circuit
Edge Triggered D-Type Flip-Flop (3)
- This is used as a NAND flash memory unit
- On the rising edge of each clock signal, the state of the data input is accepted and the output is updated to reflect this
- Once the clock signal input goes low, the state of the circuit will not change and store the output
OS Processor Management (2)
- To allocate processors to processes
- Schedule processes
OS Memory Management (4)
- To allocate memory to processes
- To determine what areas of memory
are used for what purpose - Moving data into and out of RAM / to a paging file for virtual memory
- Ensuring processes can only write to memory that they have been allocated
OS I/O Devices Management (3)
- To allocate I/O devices to processes
- Manages communication between
processes and I/O devices - Automatic installation of drivers for new I/O devices
OS Storage Management (4)
- To allocate space on a storage device to files
- Organising files into directories
- Determines where on a device to save a file
- Recognising storage devices when
they are connected