Relative Content

Tag Archive for programming-languages

Is this an assembly language?

In my childhood I used to program on an MK-61 Soviet calculator. It had four operating registers (X, Y, Z, T) and 15 storage registers. A program could have 105 steps.

Whats the difference between an interpreted language and one compiled to a VM? [duplicate]

This question already has answers here: Interpreted vs Compiled: A useful distinction? (7 answers) Closed 10 years ago. It occurs to me that there’s not a heck of a lot of difference between $>python module.py And: $>javac module.java $>java module.class The former compiles to an intermediate language (python bytecode) and executes the program. The latter […]