Choice of Programming Language for Different Softwares
With experience and reading things around, here I share some patterns, I see about, what programming language is being used for what type of software. C ... When we need to write some base infrastructure that will be used by some upper layers softwares. This is when no compromise on performance is accepted. For such software middle-ware or virtual machine oriented languages are not good choice, as it would only add an extra layer. And software will not compile in machine native code. For example databases, operating systems, device drivers, etc are mostly written in C/C++ etc. MySQL, Linux, Windows (most part) are all written in C for the same reason. Java ... Java is best choice for writing bigger softwares that organization need to run their processes (e.g. warehouse, sales, etc.). These softwares are mostly know as enterprise softwares or ERPs. One might think, why not write such software in C, as performance is also paramount for ERPs. Yes, it is right but a bigger reali...