1.2.2 Applications Generation Flashcards
What are the two broad categories of software?
Systems software and Application software
What does systems software include?
OS, Utilities, Libraries, Translators
What does application software include?
Off the shelf and Custom made. Open source and Proprietary.
e.g. games, office suites, email clients, web browsers
What is systems software?
Low-level software needed to run the computer system and hardware, while providing a platform for application software to run on. The user typically doesn’t directly interact with the systems software but it ensures a high quality performance for the user.
What is application software?
Software designed to be used by the end user to perform a specific task. It requires systems software in order to run.
What is utility software?
Software designed to optimise the performance of the computer or to perform certain tasks. Each utility program has a specific function linked to the maintenance of the operating system.
What are examples of utility software?
Disk Defragmentation.
Automatic Backups.
Automatic Updating.
Antivirus.
Compression.
What is disk defragmentation?
Reorganises the data on magnetic hard drives where the data has become split up into fragments, stored throughout the memory.
How does Defragmentation work?
Puts all the associated data in a series of sequential blocks as well as organising the unused memory into one block.
How does defragmentation speed up the read/write speeds?
The read/write head doesn’t need to travel as far to read or write the data onto/of of the disk.
What are automatic backup utilities?
Utilities that regularly create copies of files automatically. The files to be backed up can be selected by the user and they can choose how often they are backed up as well as where they are stored.
What benefit does automatic backups have?
The user doesn’t have to think about doing regular backups. Set and forget. In the event of a fire, power failure, malicious attacks or other accident the files can be recovered.
What is an automatic updating utility?
A utility to ensure that the OS is always up to date with any updates being installed automatically when the computer is restarted. Some updaters will also check other software (including applications).
What benefit does automatic updating have?
Updates tackle bugs and security flaws to ensure that the system is less venerable to malicious attacks. Doing so automatically means the user doesn’t have to monitor this and the user is kept safer.
What is an antivirus utility?
Responsible for deleting potential threats to the computer (malware) and alerts the user to their presents. Advanced antimalware software will scan new data (e.g. emails and downloads) for viruses as a preventative measure.
What is a compression utility?
A utility that allows files to be compressed and decompressed. Especially useful when transferring files over the internet.
What is source code?
The code for a program written by the programmer in a high level language
What does open source and closed source refer to?
If the source code is accessible to the public
What is open source code?
Software where the source code is freely available for the user to view and modify legally if they would like to. It is free to use, distribute and modify.
What are the advantages of open source code?
Tends to be free - although could be sold.
Anyone can modify and improve it to meet their needs.
Bugs can be fixed quick as there is a community of developers working on it.
Get unlimited installs.
Allows developers to ‘get known’.
What are the disadvantages of open source code?
Updates can take longer to come out as there is no financial incentive to do so.
Lower security - as it can be developed in an unsecure environment.
Not as much documentation on how to do things.
Tends not to be as feature rich.
May be harder to use (accessibility).
Potential for malicious actions as the code can be modified.
Little to no customer support.
Developers have little to no financial gain.
May not be fully/thoroughly tested.
What is closed source software?
Software that typically requires the user to have a licence to use it. Users are unable to access the source code and doing so, without permission, is a criminal offence. The company producing the software holds the copyright.
What are the advantages of closed source software?
Thorough, regular and well-tested updates by the company producing the software.
Reliability and trust.
Better customer service and support.
Better security - developed professionally.
What are the disadvantages of closed source software?
Licences restrict how many people can use the software at once.
Can be expensive - either an upfront cost or a subscription.
(Not always. Some can be free but proprietary).
Forced to wait until the company fixes any errors or bugs - this can take longer as it will have to go through an approval process.
Users cannot modify and improve software themselves to meet their needs.
Privacy becomes an issue.
Old software may no longer be supported.
Features could be withheld until you pay for upgrades.
What is object code?
The code produced by a translator - Binary of the source code
What is machine code?
The general term for binary code. Object code is a form of machine code.
What is the main role of a translator?
Convert code into machine code so it can be understood by the computer.
What are the 3 main types of translators?
Assembler.
Interpreter.
Compiler.
What is an assembler?
A translator that translates assembly code into machine code.
What is assembly code?
A low level language that uses mnemonics that directly relate to binary machine code. One assembly language code in one machine code instruction.
What is the drawback of an assembler?
The instruction set is dependant on the hardware as each processor has its own set of instructions that it can execute.
What is an Interpreter?
Translator that translate one line of source code into machine code at a time.
How does an interpreter work?
When the program is running it reads each line individually and, if there are no syntax errors, will convert that line into machine code before running it. it then moves onto the next line.
What are the advantages of an interpreter?
Easier to debug as errors are picked up at translation - no long error reports.
Allows for flexibility and experimentation with approaches to code.
makes testing easier as the whole code doesn’t need to be compiled each time a small change has been made.
What are the disadvantages of an interpreter?
Doesn’t produce an executable file.
The code must be translated each time it is run.
Runs slower as each line needs to be translated each time its needed.
Means that the code isn’t optimised as its left in its original state.
if being distributed the source code must also be provided to the user - meaning that it could be modified without permission. The user will also need an appropriate interpreter installed.
What is a compiler?
A translator that translates all of the source code into machine code in one go.
What is produced by a compiler?
An executable file
What is the benefit of producing an executable file?
More easily distributed as the user doesn’t need to have an interpreter installed.
As the code produced is binary it is almost unreadable meaning the source code and any trade secrets are kept hidden.
What are the advantages of a compiler?
Runs faster than non-compiled code.
user doesn’t need translating software installed saving money and storage.
During compilation the code is optimised to its most efficient form.
What are the disadvantages of a compiler?
Code must be compiled in full and every time a change is made the code must be re-compiled. Means that you cant run only a small section of the code. All or nothing.
Compilers are specific to a processor as different processors have different programming approaches.
Produces a long error page at the end if compilation fails which can be challenging to understand and identify where the error comes from.
What are the stages of compilation?
Lexical analysis.
Syntax analysis.
Object code generation.
Code Optimisation.
What is each stage of compilation known as?
A pharse
Where does lexical analysis occur?
A part of the compiler called the lexer
What happens in lexical analysis?
The source code is scanned character by character to find lexemes which can be compared to the rules of the language to see if it is valid.
What is a lexeme?
Keywords, constants, and variables
How are lexemes identified?
White spaces, operators and special symbols define the start and end of lexemes
What does the lexer do?
Ignore spaces and tabs. (not removed, just ignored).
Code comments are removed for efficiency.
Basic debugging and error checking takes place (invalid variable names, correct data types, causes of over and underflow).
All numbers are converted straight to binary.
Lexemes, strings, numbers operators and punctuation are replaced by symbols known as tokens - producing a symbol table.
What is the symbol table?
A table that holds an entry for every keyword, operator and identifier in the program.
What stages of compilation populate the symbol table?
Lexical analysis and syntax analysis.
What information does the lexer put into the symbol table?
The identifier and the runtime address
What is a potential issue with the symbol table?
Can become quite long when multiple lookups are needed which effects efficiency.
What is produced with the symbol table?
The lexical/token stream, each identified by its token
What is the role of syntax analysis?
Determine weather the sequence of input characters, symbols, items or tokens form a valid sentence in the language.
Where does syntax analysis get the tokens from?
The lexical analyser
How can the language be expressed?
A syntax diagram or Backus-Naur form
What is parsing?
The process of applying the rules of the language to each statement of the source code.
How are brackets checked in syntaxial analysis?
Using a stack that keeps track of when they are opened and closed
What happens in syntax analysis?
Brackets checked.
Priorities of arrhythmic operators determined.
Expressions converted into a form that the machine code will more easily understand.
Debugging.
Semantics checked.
Error report returned
How are expressions converted into a way more easily understood by machine code?
Reverse Polish
How does syntax analysis act as a debugger?
Checking the sequence of keywords and symbols to ensure it follows the rules of the language
What are semantics?
The meaning of the rules rather than the grammer of them.
e.g.
int(3.14) will error.
Both integers and floats are allowed but this is an incorrect use of them.
What is an error report?
A report returned to the user listing all the errors that were found
What happens in object code generation?
The complete object code can be generated.
Links to any libraries are made
What happens in code optimisation?
Removal of unused functions.
Spotting and removing redundant instructions.
What are redundant instructions?
Instructions that will never run. E.g. statements after a return:
return x
print(x)
What issue can redundant instructions and unused functions cause?
Make the file much larger. As each high level instruction is made of many machine code instructions.
What is the drawback of code optimisation?
Its a time consuming process and will greatly increase the compilation time.
What are libraries?
Pre-compiled programs that can be incorporated into programs and loaded when required.
What are the advantages of using libraries?
They are tested and error free - saving time debugging.
Programmers don’t have to write the code themselves to do common tasks - saving time in development and testing.
Libraries can be reused within multiple programs so they don’t have to be re-written each time.
Provide a specialised range of functions that would otherwise require lots of time and effort to develop.
Allows programmers to make use of someone else’s expertise.
What is a linker?
Software that creates a connection, via machine code addresses, for when call and return functions are used. They make sure there are no conflicts between the modules in order to make the complete program.
What is a loader?
Programs provided by the OS that can load the library and/or subroutines anywhere in memory.