2.5 Flashcards
machine code
- binary representation of instructions in a format that the CPU can decode and execute
- have an operation code (op code) instruction and address or data to use
what are low level languages
- written in assembly language
- translated by an assembler into machine code
what are low level languages used for
- for embedded systems and device drivers where instructing the hardware directly is necessary
high level languages
- e.g. languages such as python, c++, java, visual basic
- translated by a compiler or interpreter into machine code
advantages of high level languages
- makes writing computer programs or interpreter into machine code
- one source code instruction translates into many machine code instructions
- code will run on different types of processors
- code is quicker and easier to understand and write
disadvantages of high level languages
- less memory efficient
- code will be slower to execute if it is not optimised
advantages of low level languages
- code is fast to execute
- memory efficient
disadvantages of low level languages
- code is harder to write and understand
- the code works on one type of processor only
advantages of interpreters
- easy to write source code because the program will always run
- code does not need to be recompiled when changed, making it beginner friendly
disadvantages of interpreters
- translation software is needed at run time
- speed of execution is slower
- code is not optimised
- source code is needed
advantages of compilers
- no need for translation software at runtime
- speed of execution is faster
- code is usually optimised
- original code is kept secret
disadvantages of compilers
- the program will not run with syntax errors, making it more difficult to write the code
- code needs to be recompiled when the code is changed
- designed for a specific type of processor
functions of IDEs
- debugging tools for finding logic errors
- help with preventing and identifying syntax errors
- providing a run time environment
differences between compilers and interpreters
- compilers translate code in one go
- interpreters translate one line at a time
- compilers create an executable
- Compilers report all errors at the end
- interpreters stop when they finds an error
what is the purpose of an assembler
to translate machine code into binary
purpose of translators
Convert a program written by a programmer into binary code that the computer can decode and execute
what is an IDE
A suite of tools that helps a programmer to write error-free, maintainable code
Run-time environment
tool used by the IDE to enable program to be run
Common tools and facilities available in an IDE
- Editors
- Error diagnostics
- Run-time environment
- Translators
what does debugging software do
displays information about errors
compiler
- tests all code at once to check for errors
interpreter
- checks for errors in code one line at a time