Process Overview
This flowchart explains the difference between high-level and low-level programming languages by showing how a programmer writes code and how the computer processes it.
Jump into concepts and practice - no test required
This flowchart explains the difference between high-level and low-level programming languages by showing how a programmer writes code and how the computer processes it.
+---------------------+ +---------------------+ +---------------------+ | High-level Language | ----> | Compiler/Interpreter | ----> | Machine Code (Binary)| +---------------------+ +---------------------+ +---------------------+ +---------------------+ +---------------------+ | Low-level Language | --------------------------------> | Machine Code (Binary)| +---------------------+ +---------------------+
print('Hello, world!')
What would be the equivalent in a low-level language?MOV AH, 09h LEA DX, message INT 21h message DB 'Hello, world!$'shows assembly instructions to print a string, which is low-level. Others are high-level languages.
MOV AX, 4C00h INT 21hWhat is the likely problem?