1.2.2 System Application Generation Flashcards
What is Software
The programs / sets of instructions that run on a computer system.
What are the 3 categories that software falls into
- Application
- Utility
- System
What is Application Software
- Application Software is any software package that carries out a task and/or aids the user in producing something on a computer
- It is designed to be used by the end-user to perform either generic or specific tasks (desktop publishing, word processors, spreadsheets)
Why pick 1 application over the other
- Easy of use
- Cost
- Speed
- Hardware
What is source code
- Source code is produced by developer’s and defines what they want their software to do
- Easy to understand, maintain and debug for humans not computers
- When software is described as open or closed it refers to if it is public or not
What is system software
- Low level software that is responsible for running the computer system smoothly, interacting with hardware and generally providing a platform for applications to run
What is open-source software
Source code is freely available… …for others to amend / examine / recompile
What is closed- source software
- Protected by the copyright Design and Patents Act
- Users cant modify the software
- Usually paid for and licensed per user or per computer
- Tested by developer’s prior to release, although it may run better programs
What are the benefits of open source for the user
- Software is free
- Wide community modification and support and improved by anyone
What are the benefits of open source for the creator
- Gets their software out to the wider community
- This means that a lot of the core functionality they need is already available (1) so the company just has to make amendments/additions specific to their system (1) saving time and money (1).
What are the disadvantages of open source software for the user
- Can be poorly supported
- Some features might not be well tested
What are the disdvantages of creators for open source
- Little-to-no financial gain
What are the advantages of closer source for the creator and the user
- Well supported tested and professional built product
- They recieve an income for their product
What are the disadvantages of closed source for the user and creator
- Cost or ongoing subscription fee
- Constant demand from community for more features and improvements
- Piracy issues
What is a knowledge based system
- Using a knowledge based system, a user can interrogate a vast knowledge base to find a solution
- The user enters the information they already have, and the knowledge based system infers an answer
- If the system cant reach a conclusion, it requests more information
- This process is continued until either the system has a high degree of confidence that it knows the solution or it has exhausted every line of inquiry that it doesnt know the solution
What are the different parts that make a knowledge based system
- Knowledge base : a database containing expert knowledge
- Inference Engine : Attempts to work out the answer to the user’s query by using the rule base
- Rule Base: Links knowledge together through facts
- User Interface: Allows the user to communicate with the system (HCI) stands for human computer inteface
What 3 decisions is the inference engine responsibke for
- Whether it has enough information to arrive at an answer
- Whether it requires more information
- Whether it cant reliably come up with an answer
What does CAD stand for and what is it
- Computer Aided Design
- Enables designers to try out different designs for a product before physical production
- Allows the designer to place parts together, scale to test how the design might react in the real world without making physical prototypes e.g designing a car.
What does CAM stand for and what is it
- Computer Aided Manufactuing
- Machines make products rather than people making them (small error margin)
- Specifications are fed into CAM systems, which drives an assembly line
- The specification say exactly what the product looks like, its materials and the steps required to assemble it
- It relies heavily on sensors and actuators
What is utility software
- A piece of software … – … with one purpose … – usually to do with the upkeep / maintenance of a computer.
What are the 4 main areas that utility software can be split into
- File manager utility software
- Compression software
- Task Manager
- Anti-virus Software
What does file manager do
–Manages data storage / organises data storage
– Used for the deletion / sorting / moving / copying / creation of files / folders – Manage the storage of software
What is compression software
- Reduces software and the overall size of files
- Will complete this with lossless compression
- Compressed files are unreadable until uncompressed by the same utility
- A number of different files, folders and executables can be comprssed together, to create a single compressed file. The compression utility will retain files, details and structure
What is Anti-Virus software
- Anti-virus protects the system, scans system, alerts the user and deletes viruses found
What do Task Managers do
- Allow the user to view the processes currently running on a system and see what resources each one is using.
What are translators and what are the 3 types
- The term translator is used to cover all the types of software that converts code from 1 form to another (high level source code into low-level object code)
- Compiler
- Interpreter
- Assembler
What is a compiler
- Converts source code written in high-level languages into object code then machine code all at once after carrying out a number of check and errors.
- Whole code translated before it is run
What is an interpreter
- It translates each line of code into machine code, line by line
- Takes the first line of machine code, translates it and executes it before moving onto the next
What is an Assembler
- Assemblers translate assembly code into machine code
- Each assembly code instruction has a 1-1 mapping with machine code instruction (1 instruction = 1 line of machine code)
What are the 2 phases of assembly code into machine code. What is the work needed to be done before the CPU can execute
- The assembly code contains variables, labels and are converted into machine code in a 2 phase process
- Phase 1: Labels and variables are converted into memory addresses and stored in a symbol table
- Variables map to the memory location that s used to store the value, lables map to the exact position of the instruction it needs to jump to
- Phase 2: Converts the mnemonics into their binary representation
- Phase 1: Labels and variables are converted into memory addresses and stored in a symbol table
What is a symbol table
- A symbol table is produced as the assembler works through its first phase
- In order to store a variable (COUNT) an address must be set up in the next available memory address after the prgram
- When a label is encountered, the memory address of where it was defined is placed in the symbol table
- Once it has been produced the assembler goes over the code and replaces every variable/label with its memory address
As programmers what would we like a our source code to be like
- Close to english
- Easily read, modified and interpreted by humans
What are the 4 main stages of compiliation
- Lexical Analysis
- Syntax Analysis
- Code Generation
- Code Optimisation
What happens in Lexical Analysis (First Stage)
- Each line is read and the compiler converts lexemes into a series of tokens
- A pair is created: token (type of data lexeme is) (variables, constants) and the lexeme (component of source code).
- White space (extra lines) are stripped out. Encountering white space, operator or symbol - lexeme is complete
- It then checks if the lexeme is valid using a predefined set of rules that allow every lexeme to be indentified as a valid token
- Variables, and subroutines stored in symbol table
Explain what type of software you would classify compression as
- A compression program is a utility. It is a small program with 1 purpose and helps with system upkeep
State 3 roles of the Operating System
- Manages Hardware of the system
- Manages programs installed and being run
- Manages Security of the system
- Provides an interface between the user and the computer
What happens in Syntax Analysis (second)
- Checks if tokens are in the right order and follow rules of language
- Does this by analysing token stream against production rules to detect any errors and builds an abstract syntax tree (abstract syntactic structure of source code) - follows syntax diagrams to check everything is correct
- When an identifier is added, symbol table is checked to see if it exists
- Information from AST is used to update data type of identifiers
- Where it breaks the rules of the language errors are generated. If no rules are broken then it’s passed on to the next stage…
What is syntax
- The rules governing the arrangement of words and phrases to create well-formed sentences
What is the Machine Code Generation Stage of Compiliation (third) First part of this stage
- Can only start when AST is made (no errors)
- Is done by mapping parts of the AST to blocks of machine code - blocks are known as machine templates
- The compiler will look for common tasks and match to machine code templates
- Code mapping is done by finding common AST patterns and matching to blocks of machine code - continues until whole tree is mapped
What is the Machine Code Generation (2nd part of this stage
- Once we are at a low-level language, can make use of architecture of CPU such as general registers (to minimise memory access)
- General registers are assigned to parts of the code
- There arent enough registers - will be recycled as program is executed
- Machine code generation must decide to what registers are assigned to which instructions
What is Machine Code Optimisation
- It attempts to reduce the execution time of the program and use little memory as possible by:
- Spotting redundant instructions and producing object code that achieves the same effect as the source program but may not by same means
- Remove subroutines that are never called
- Removing variables and constants that are never referenced
- Removes the number of jumps/branches code makes
What are library modules
- Libraries are compiled, error free pieces of software written by expert programmers so save time developing and testing modules
- They contain useful routines which perform common tasks such as sorting or searching encryption and graphics
Why does using a library help programmers
- Relatively error free/ has already been tested
- Ready to use / saves time/already been written
- Used multiple times / common tasks / reduces repeated code
- Programmer expertise
- Different source languages
What are the drawbacks of library modules
- May (significantly) increase size of compiled file
- as library contains many routines that aren‘t being used.
- Not written by the programmer …so introduces uncertainty / require further testing /programmer needs to spend time familiarisingthemselves with it
What are linkers
- Links the main program to libraries ..can either include them in the final executablecode ..or get the executable code to point to the externallibraries
- There are 2 methods to pull in the libraries it needs:
- Static Linking
- Dynamic Linking
What is Static Linking
- All required code from the libraries is included directly in the finshed machine code - results in large executable program files
What is Dynamic Linking
- Compiled versions of the required libraries are stored in the host computer.
- The OS links the required code from the library as the prgram is running
- This cuts down on the size of the compiled machine code, if the dynamic libraries change, the program may stop
What are loaders
- The loader is a small utility that will load the Direct Link Library (DLL) file on request , rather than linking it when it is being compiled
- It is part of the OS that loads the executable program file (machine code) into memory, ready to be run
- When using Dynamic Linking, it will also be responsible for loading the required libraries into memory
What are the different software that can be used
- Presentation Software - convey info. Used in meeting/educational.
- Desktop Publishing - creation of publication. Templates.
- Spreadsheet Packages - numbers/financial information
- Word Processor
- Drawing Packages - Allow user to draw images Bitmap: uses pixels, Vector: made of lines/shapes can be resized without loss of quality.
- Database Packages: Data organised into tables, fields/records. Search and sort data quickly.
What are the advantages of CAM
- They will always produce products that are exactly the same
- Dont get tired
- Dont make mistakes (unless they break down)
- Work 24 hours of the day
Exam Question: How does an application differ from a utility
- Application performs tasks for the user (rather than the computer)
- Performs generic (rather than specific tasks)
Advantages of a Compiler
- No need for translation at run time
- Speed of execution is faster
- Code is usually optimised
- Original source code is kept secret
What are the disadvantages of a compiler
- Program will not run with syntax errors, makes it more difficult to write code
- Code needs to be recompiled when the code is changed
- Designed for a specific type of processor
Advantages of an interpreter
- Easy to write source code as the program will run and stop when it finds a syntax error
- Code doesnt need to be recompiled when code is changed
Disadvantages of an Interpreter
- Translation software is required at run-time
- Speed of execution is slower
- Code is not optimised
- Source code is required
Exam Question: Describe what is meant by the term Javascript (2)
- A programming language that runs in a web browser (1)
- that can be embedded into HTML (1)
- with tag (1)
- to add interactivity to a page (1)
Exam Question: Explain how Linux being open-source would benefit the games company
- This means that a lot of the core functionality they need is already available (1)
- so the company just has to make amendments / additions specific to their system (1)
- saving time and money (1).
What is a device driver?
- Used to configure hardware
- To enable peripheral and OS to communicate
What are the differences between open source and closed source?
- – Open source has the source code freely available… – …
- to amend/copy/redistribute/recompile –
- Whereas closed source is distributed in binary form only/the source code is not made available…
- – There are licensing conditions restricting the redistribution/there is no permission to amend the (program) code
What is the purpose of the lexical and syntax analysis stages?
- Lexical analysis is necessary to put the code into a format which can be read and processed (i.e. parsed) by the syntax analyser.
- Syntax Analysis is necessary to ensure the code is valid in as much as it meets all the structural rules of the language. This guarantees it will run (though it might not do as expected and may still have occurrences of runtime errors).
What is the purpose of the machine code generation and machine code optimisation stages?
- Code generation is necessary to turn the code into a format that the processor can understand (i.e. binary machine code). The code optimisation whilst not necessary, does ensure the code runs quicker or using less memory.
What is the purpose of a linker?
- Linking is necessary to ensure the library code is incorporated into the final program.
Exam Question: What is syntax analysis stage? (5)
- Statements / tokens are checked
- against the rules / grammar of the language
- Errors reported as a list
- Error diagnostics given
- Detail added to symbol table… …eg data type / scope / address
- Receives output from lexical analysis / passes code to code generation
Exam Question: Early computers were programmed in binary machine code. Today most programmers use high-level languages. Explain why the programmer could use intermediate code for the final product.
- Can be used in a virtual machine
- Portable/ can be used on any machine
- Protects the source code from being copied