Programming language
- This helps in writing logic to solve a problem and run it on OS
- To interact with OS, there are three options
- Compiler:
- C, C++, Golang
- Interpreter: We need interpretor to be installed on the target machine
- Python, nodejs
- Hybrid:
- Compiler -> convert your logic into Bytecode (Intermediate Language)
- Interpretor -> Bytecode into OS
- Compiler:
