Please enable JavaScript.
Coggle requires JavaScript to display documents.
computing - Coggle Diagram
computing
-
assembly code
assembly code was made to make coding quicker than using binary but this was still slow as it is difficult to understand and difficult to debug and find whats wrong with one of your codes
this code was translated into machine code using an assembler these automatically this increased the speed of coding
high level language code
this code is used today and is a quick way to code as it is easier to read as it is basic english and easier to debug and it automatically translates to machine code using either a compiler or interpreters
-
grace hopper
grace hopper conceived the idea to have a compiler in a computer
it took her 3 years to develop
as people believed computers can only do arithmetic
-
this process speeds up coding on a computer as it makes it so you can code in basic english instead of machine code or assembly code
-
compilers
compilers translate all of the source code this is a slower process than using an interpreter but it creates a executable file or document that doesn't need the original source code
this speeds up the process as every time you need to translate the original source code you can look at the already compiled executable file or document so you don't have to compile it every time unlike interpreters
interpreters
interpreters translate a source code line by line this is quicker than compilers but doesn't create an executable file or document so you still need the original source code this slows done the process as every time you want to translate the code you need to do line by line each time
-