- What does the EVM do?
The EVM reads and secure smart contracts.
-
What is the format of the instructions that the EVM can read?
Bytecode -
What is the relationship between the programming language Solidity and Bytecode?
Solidity is the programming language for smart contracts in the ethereum blockchain. It creates readable bytecode for the EVM -
Why can’t Bitcoin run the same type of complex programs like Ethereum can?
BTC is written in Script programming language, it doesn’t have dynamic programming features like Solidity, which can do loops for example. Solidity is a so called Turning complete language whilst Scrips isn’t. -
What is a Turing Complete programming language?
It can solve almost every problem and issues including loops.