How does coding physically work?

140 viewsOtherTechnology

Like how exactly can a bunch of letters, numbers, and punctuation symbols make your computer do all kinds of things? Plus what happens inside the computer when it executes the code?

In: Technology

22 Answers

Anonymous 0 Comments

A computer executes machine code. It is a binary 0 and 1s in a very precise format the central processing unit can run.
There is a software named compiler that translates the human-written code into machine code, so it can be executed.
Another way is having an interpreter, which is a software that can read code and execute it directly.

You are viewing 1 out of 22 answers, click here to view all answers.