Don't wanna be here? Send us removal request.
Text
Python # 1: Low and High level languages
Low level languages: - more connected to hardware - requires to have deep knowledge of how the operating system works - don't protect You from your own mistakes - it's not too abstract, so easy tasks may requires more work being done
High level languages: - has some middle man between code and it's executable form, it means you're writing code, then it's translated to bytecode or some intermediate language like in .Net - offers many more abstractions in code, so you just take care of code architecture / usability in spite of fighting with overflow allocated memory or sth - could be working far more slower than low level languages - building stuff in it is pretty fast
0 notes