Applications generation Flashcards
What are applications?
- Software that is designed to perform a specific task or a task for the user
Examples of applications and their purposes
- Word processor: for creating, editting and printing text documents
- Web browser: for browsing the web and accessing information online
- Spreadsheet software: for organising, calculating and analysing numerical data
- Antivirus: for protecting the computer system from viruses and other malicious software
What is utility software?
- Software designed to help analyse, configure, optimise or maintain a computer
- It supports the operating system
Examples of utility software
- Disk defragmentation: rearrange the files on a hard drive to increase efficiency
- File management: organise, search, rename and relocate files stored on the system
- Device driver: provide an interface between the hardware and operating system
- Security: protect the system from various threats like viruses and malware
What is open source software and some examples?
- Users can view, modify and distribute the source code
- Ideal for collaborative projects, customisation and transparency
What is closed source software and some examples?
- The source code is hidden and proprietary
- Ideal for businesses requiring intellectual property protection
Pros and cons of open source software
- Pros to the creator: collaboration, community engagement, faster innovation
- Cons to the creator: less control, burdened with requests from the user
- Pros to the user: free, customisable and transparent
- Cons to the user: less user-friendly, compatability issues and more bugs
Pros and cons of closed source software
- Pros to the creator: greater control, revenue through sales
- Cons to the creator: slower innovation, full resposibility for updates
- Pros to the user: professional support, consistency and polished products
- Cons to the user: costly and less cusomisable
What is a translator and the main types?
- Translators convert source code from a high-level language to a low-level language
- The main types are:
- Interpreters
- Compilers
- Assemblers
What do interpreters do?
- Interpret source code line by line and execute while interpreting
- Easier to debug, allows incremental testing and faster to start execution
- Slower overall execution time and interpreter must be present during execution
What do compilers do?
- Translates the entire source code into machine code and executes it
- Faster execution time, no need for compiler during execution
- Longer initial compilation time and can be more challenging to debug
What do assemblers do?
- Translate assembley language into machine code
- Assemblers deal with low level languages
What is compilation and what are the 4 stages?
- A process that translates a program written in a high-level language into machine code
- Lexical analysis
- Syntax analysis
- Code generation
- Optimisation
What is the process of lexical analysis?
- Unnecessary elements such as comments and white space is removed
- Lexical tokens are introduced
- Tokens represent common keywords in the programming language
- Reserved words are replaced with tokens
- Tokens are added to a token look up table
- Variables are stored for later use
What is the process of syntax analysis?
- Incoming tokens from lexical analysis are checked to ensure that they conform to the rules of the programming language
- Lookup table is updated with the data type and scope of variables
- If errors are found, they are reported back AT THE END in an error report
- If the code passes, it creates an abstract syntax tree (AST)
What is an abstract syntax tree?
- An “intermediate” representation of the program that is being analysed
What is the process of code generation and optimisation?
- Takes the AST from the previous stage and converts it into objet code that can be executed by the computer
- During optimisation, the code is made more efficient without changing its functionality
- A common method of this is by removing duplicate code
What are code libraries?
- A collection of pre-written code / functions / scripts
- They are packaged together to allow developers to perform common tasks without having to rewrite the code
Benefits of using libraries
- Efficiency: saves time and effort
- Reliability: often tested and optimised already
- Reusability: same library can be reused
- Community support: strong support and communication
Drawbacks of libraries
- Dependency issues: can lead to problems if the library is discontinued
- Compatability: different versions of the library of the system you are working on
- Overhead: can add unnecessary complexity and size to the application
How are libraries used during compilation (linkers)
- Libraries are often compiled seperately and then linked to the code
- Static linking: libraries are combined with the code at compile time, creating a larger executable
- Dynamic linking: libraries are linked during runtime, allowing for more flexebility but requiring the library to be present during execution
Role of a linker
- Combine different code files and libraries into a single executable. Resolve references between files
Role of loaders
- System tools that load executable files into memory so they can be run by the operating system