Please enable JavaScript.
Coggle requires JavaScript to display documents.
CODING - Coggle Diagram
CODING
translater
-
-
-
the need for translators
High-level languages only exist because of translators. Without translators, our only option would be to write in machine code. High-level languages made programming more accessible to a wider audience.
interpreter
Translates and executes a program one line at a time. Like the source code, it is always required for the code to execute.
-
-
Low level language
assembly language
Example - mov edx,DWORD PTR [rbp-0x4]
mov eax,DWORD PTR [rbp-0x8]
the downside of assembly language was that it was it was hard to read, debug, and maintain.
-
-
-