Topic 2: Software and software development Flashcards
What are the functions of an OS
- Interrupts
- User Interface
- File Management
- Peripheral Management/Drivers
- User Management
- Memory Management
- Processor Scheduling
What is the purpose of an OS
To manage interaction between hardware and software
What does a GUI have
WIMP
What does WIMP stand for
Windows
Icons
Menus
Pointers
What does BIOS do in terms of OS
BIOS loads OS to RAM
What is CLI and when would it be used
Command Line Interface, used at a technical level as you interact with hardware more
What is MDI and when would it be used
Menu Driven Interface, used to simplify options so the user can’t be annoying (ATM)
What is Memory Management
Manage memory, Paging and Segmentation
What is Paging
A process loaded to RAM is allocated sufficient pages that may not be contiguous in physical terms. Pages are fixed length blocks of memory. Each page has an address.
What is Segmentation
Variable length memory-size data, Logical
What are the benefits of Paging
So data can swap into and out of virtual memory.
Page tables don’t have to have data contiguous
What does a page table do
Maps between the logical and the physical memory locations
What is swapping
Moving data to and from virtual memory
How are the pages that get swapped decided
By the OS
Why is swapping bad
It causes disk thrashing which slows performance
What is Immediate addressing
Actual value
What are the 4 types of addressing
Immediate
Direct
Indirect
Indexed
What is Direct addressing
Address of value
What is Indirect addressing
Address of Address of value
What is Indexed addressing
Index value + Value
What sends interrupts
Software, Hardware devices or the CPUs internal clock
When would you Interrupt
User Input
Errors
Power Failure
An I/O sends and Interrupt signal
When are interrupts checked for
CPU checks for interrupts at the end of every cycle
What happens if an Interrupt is found
Current processing is pushed to a stack
What happens when the interrupt is finished
Processing is popped back
What is the ISR
Interrupt Service Routine
What is a Queue
FiFo
What is a Stack
LiFo
How are interrupts processed
In order of priority using levels
Can an interrupt be interrupted
Yes, by a higher level interrupt, it will be pushed to the stack
What is processor Scheduling
Allows us to have the illusion that the CPU is multitasking
Name some features of a Round Robin
FIFO
Set amount Time slices
Sent to back of Queue
What is a Round Robin routine
Each job is given a time slice of processor time to run in.
When a job has used up it’s time slice it is returns to the start of the queue and receives another.
This repeats until the job is complete.
What is First come First Served Routine
Jobs are processed in the order they entered the queue
What is a Multilevel feedback queue routine
Uses multiple queues, each with a different priority
What is a Shortest job first routine
The queue is ordered by the amount of processor time needed. Shortest jobs are completed first.
What is a Shortest time remaining routine
The queue is ordered based on the time left to completion.
Jobs with the least time needed to complete are finished first
Advantages and Disadvantages of Round Robin
A: All jobs are eventually attended to.
D: Longer jobs take much longer. Takes no account of priority.
Advantages and Disadvantages of First come First Served
A: Easy to implement.
D: Takes no account of priority.
Advantages and Disadvantages of Multilevel Feedback
A: Considers job priority.
D: Tricky to implement
Advantages and Disadvantages of Shortest Job First
A: Works well for batch systems
D: Requires additional processor time to order the queue. Takes no account of priority.
Advantages and Disadvantages of Shortest time Remaining
A: Increased throughput
D: Requires additional processor time to order the queue. Takes no account of priority.
Name 5 types of Software Development
- Waterfall
- Agile
- Extreme Programming
- Spiral
- Rapid Application Development (RAD)
Advantages and Disadvantages of Waterfall
A: Straightforward to Manage. Clearly documented
D: Lack of Flexibility. No risk analysis. Limited user involvement
Advantages and Disadvantages of Agile
A: High quality code. Flexible to changing requirements. Regular user inputs.
D: Poor Documentation
Advantages and Disadvantages of Extreme Programming
A: High quality code. Constant user involvement means high usability.
D: High cost as two people needed. Teamwork is essential. User needs to be present.
Advantages and Disadvantages of Spiral
A: Thorough risk analysis. Caters to changing user needs. Prototypes produced throughout.
D: Expensive to hire risk assessors. Lack of focus on code efficiency. High costs due to constant prototyping.
Advantages and Disadvantages of RAD
A: Caters to changing requirements. Highly usable finished product. Focus on core features, reducing development time.
D: Poorer quality documentation. Fast pace and late changes may reduce code quality.
Uses of Waterfall
Static, low-risk projects with little user input
Uses of Agile
Small to medium projects with unclear initial requirements
Uses of Extreme Programming
Small to medium projects with unclear initial requirements requiring excellent usability.
Uses of Spiral
Large, Risk intensive projects with a high budget
Advantages of Open Source Software
Online, free, community support. Many individuals will work on the code meaning it is of high quality. Free.
What is Open Source Software
Provided along with the source code. No license required to use.
Disadvantages of Open Source Software
Not always well supported or documented. Variable quality code. Less secure.
What is Closed Source Software
Needs a license to use. Source code is not available. Protected by Copyright
Advantages of Closed Source Software
The company provides support and documentation. Professionally developed. More secure. Regular updates
Disadvantages of Closed Source Software
Code cannot be customised to meet user needs. License may restrict use. More expensive.
What are the 4 stages of Compilation
- Lexical Analysis
- Syntax Analysis
- Code Abstraction
- Optimisation
What is Lexical Analysis
- Comments and whitespace removed
- Identifiers and keywords replaced with tokens
- Token info stored in a symbol table
What is Syntax Analysis
- Tokens checked against language rules
- Flags syntax errors
- Abstract Syntax Tree Produced
What is Code Abstraction
- Machine code produced using Abstract Syntax Tree
What is Optimisation
- Reduces execution time
- Most time consuming part
- Removes redundant code
What is a Translator
Convert source code into object code
What is a Compiler
- Translates code all in one go
- Compilation process is longer
- Produces platform specific code
- Complied code can be run without a translator
- Produces an executable
What is an Interpreter
- Translates and executes code line by line.
- Will error if a line contains an error.
- Slower to run than compiled code.
- Code is platform independent.
- Useful for testing.
What is an Assembler
- Assembly code is platform specific, low level code.
- Translates assembly code to machine code.
- 1 line of assembly code = 1 line of machine code.
What is a Device Driver
- Code which allows OS to interact with hardware
- Specific to the OS and architecture type
What is a Linker
- Link external modules and libraries used in the code.
- Static linkers copy the library code directly into the file, increasing its size.
- Dynamic linkers just add the addresses of the module or library.
What is a Loader
Provided by the OS to fetch the library or module from the given location in memory
What is a Library
- Libraries include pre compiled, error free, code which can be used within other programs
- Common functions can quickly and easily be reused across multiple programs
- Saves the time and effort associated with developing and testing code to perform the same task over and over again.
Ways to Address Memory
- Machine code comprises an operand and opcode.
- Operand is the value relating to the data on which the instruction should be performed.
- Opcode holds the instruction and the addressing mode.
- The addressing mode is how the operand should be interpreted.
What are Virtual Machines
- A software implementation of a virtual computer
- Intermediate code is halfway between machine code and object code.
- It is independent of process architecture allowing it to run across different systems.
- It takes longer to execute
- Virtual machines can be used to help protect from malware, test software, or run software with different versions or OS requirements.
What is Applications software
Used by an end user to perform a specific task. e.g. word processor or web browser
Name 3 types of Software
- Applications
- Systems
- Utility
What is systems software
Manages computer resources to maintain performance e.g. operating system or device driver
What is Utility Software
Has a specific function to maintain OS performance e.g. backup or compression software
What is Assembly Language
- One level up from machine code.
- Low level language.
- Uses abbreviations for machine code called mnemonics.
- Processor specific.
- One line in assembly language equals one line in machine code.
What do the Mnemonics mean:
- ADD
- SUB
- STA
- ADD the value at the memory address to the value in the accumulator
- SUB-tract the value at the memory address from the value in the accumulator
- STores the value in the accumulator at the memory address
What do the mnemonics mean:
- LDA
- INP
- OUT
- Load the value at the memory address into the accumulator
- Allows the user to INPut a value to be held in the accumulator
- Prints the value in the accumulator
What do the Mnemonics mean:
- HLT
- DAT
- BRZ
- Halt, stops the program at that line
- DATa, Creates a flag with a label at which data is stored
- Branch if Zero, branches to an address if the value in the accumulator is zero. A conditional branch
What do the mnemonics mean:
- BRP
- BRA
- Branch if Positive, branches to a given address if the value in the accumulator is positive. A conditional address.
- Branch Always. Branches to a given address no matter the value in the accumulator. An unconditional branch.
What is Extreme Programming
*An agile model.
*Development team includes developers and user representatives.
* The system requirements are based on “user stories”.
*Produces highly usable software and high quality code.
*Programmers work no longer than 40 hours per week.
*Hard to produce high quality documentation.
What is Rapid Application Development
*An iterative methodology.
*Uses partially functioning prototypes.
*Users trial a prototype.
* Focus groups gather user requirements.
* This informs the next prototype.
* This cycle repeats.
*Used where user requirements are unclear.
* Code may be inefficient.
What is Spiral Programming
*Used for high risk projects.
*Has four stages.
*Analyse requirements.
* Locate and mitigate risks.
*Develop, test and implement.
* Evaluate to inform the next iteration.
* The project may be terminated if it is deemed too risky.
*Specialist risk assessors are needed.
What are Agile Methodologies
*A collection of mythologies.
*Aimed to improve flexibility.
*Adapt quickly to changing user requirements.
*Sections of the program are developed in parallel.
*Different stages of development can be carried out simultaneously.
*A prototype is provided early and improved in an iterative manner.
* Low focus on documentation.
*High focus on user satisfaction.
What is Waterfall
- The stages are completed in order.
- The clear structure makes this model easy to follow.
- Changes mean that all stages must be revisited.
*User involvement is low.
What is Procedural Programming
- Simple to implement.
- Applicable to many problems.
- Is not suited to every problem.
- Uses traditional data types and structures.
What is Structured Programming
- A subsection of procedural programming
- The flow is given four structures: sequence, selection, iteration and recursion.
What is Object Oriented Programming, Adv/Disadvantages
Advantages
* Reusable
* Code is more reliable
* Code is easy to maintain and update
* Classes can be reused, saving time and effort
Disadvantages
* Requires an alternative style of thinking
* Not suited to every problem
* Not best suited for small problems
What is a Class
A template for an object. Defines the behaviour and state of the object
What is a state
Defined by attributes giving the objects properties
What is Behaviour
Defined by the methods. Describes the action an object can perform
What is Instantiation
Using a class to create an object
What is an Object
An instance of a class. Classes can create multiple objects
What’s a setter
A method which sets the value of an attribute
What is a Getter
A method which retrieves the value of an attribute
What is a constructor method
Allows a new object to be created from a class. Every class must have one.
What is inheritance
Process where a subclass will inherit methods and attributes of a superclass
What is Polymorphism
Allows objects to behave differently depending on their class
What is Overloading
Avoiding a method by passing different parameters to a method
What is Overriding
Redefining a method to allow it to produce a different output or function differently
What are 2 programming paradigms
Imperative (procedural and OOP)
Declarative (Functional and Logic)
What’s Declarative
States the desired result with the language deciding how to achieve it. Users are unaware how the result is obtained.
What’s Imperative
Code specifies clearly the actions to be performed
What’s Functional Programming
Based around functions
Function calls can be combined
Linked to mathematics
What’s Logic Programming
Rules and facts of the problem are defined
Queries are used to find answers to these problems
What are Algorithms
- A set of instructions used to solve a set problem.
- Inputs must be clearly defined.
- Must always produce a valid output.
- Must be able to handle invalid inputs.
- Must always reach a stopping condition.
- Must be well-documented for reference.
- Must be well-commented.
Name 4 types of testing
Black Box
White Box
Beta Testing
Alpha Testing
What is Black Box Testing
Software is tested without the testers being aware of the internal structure of the software and can be carried out both within the company and by end-users. The test plan traces through inputs and outputs within the software. This is also known as functional testing
What is White Box Testing
Testing carried out by software development
teams in which the test plan is based on the internal structure of the program. All of the possible routes through the program are tested. This is also called structural testing.
What is Beta Testing
Beta testing is carried out by end-users after alpha testing has been completed. Feedback from users is used to inform the next stage of development.
What is Alpha Testing
Alpha testing is carried out in-house by the software development teams within the company. Bugs are pinpointed and fixed.
What do Programmers use in the Feasibility Study
TELOS
What does TELOS Stand for
technical
Economical
Legal
Operational
Scheduling
Name 5 Types of OS
- Distributed
- Embedded
- Real Time
- Multi User
- Multi Tasking