Which programming language is best preferred to learn after learning the basics from c++? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Which programming language is best preferred to learn after learning the basics from c++?

12th Jan 2018, 2:23 PM
Subikesh
Subikesh - avatar
2 Answers
+ 2
Unfortunately learning the syntax of a language would not make you a programmer. Choose the language you like and learn how to code on it.
12th Jan 2018, 2:38 PM
Boris Batinkov
Boris Batinkov - avatar
+ 9
Python is undoubtedly an easier programming language to learn and use as compared to Java and C++. But since you already know a programming language, you won’t find much difficulty in learning either language. Or in the other way round, we can say that learning Python becomes even easier if you are already familiar with a language.  Java class Hello{ public static void main(String[] args){ System.out.print("Hello World\n"); }} C++ #include <iostream> int main(){ std::cout << "Hello World"; return 0;} Python print "Hello World" so it seems easy to work in python as compare to Java but it is all up to you you can start with any language if you know the basics of cpp
12th Jan 2018, 2:33 PM
GAWEN STEASY
GAWEN STEASY - avatar