Which one should i learn first. c++ , java or python?
6 Answers
Definitely C++. Since you know C, then Java and Python are irrelevant. They are trivial in comparison, and do not really take any learning at all once you know C.
But C++ has object oriented aspects that you do need to learn, and C++ is otherwise very close to C, so will be the easiest language for you to learn OOP with.
There is no point in learning Java or Python unless you intend to be working on a specific project that requires it. In comparison, every programmer needs to know C++ because it is central to all operating systems, web browsers, language iterpreters, network protocols, serious applications, fast games, etc. Almost all real programming is done in C/C++. Very little commercial programming is done in Java or Python because they are too slow, require run time support installation, and do not allow full programmer access to power, such as pointers.
Comments
Post a Comment
Comment here.