+ 1
Which Language learn first??
which languages is easy to learn and best for beginners...??
3 Answers
+ 18
From FAQ:
That depends on what you're trying to achieve.
For web development: Start with HTML, and then move on to CSS, JavaScript, JQuery, PHP, andSQL.
For general application programming: Python, C++, and Ruby; then Java, C#, or Swift, based on the platform you're targeting.
https://www.sololearn.com/faq
Take courses and practice in the Playground. Have fun with learning and codingđ
Useful threads:
https://www.sololearn.com/discuss/595802/?ref=app
https://www.sololearn.com/discuss/321242/?ref=app
https://www.sololearn.com/discuss/476490/?ref=app
https://www.sololearn.com/discuss/437973/?ref=app
+ 2
Of those, python is almost certainly the easiest to learn, due to its simple syntax. HTML, by the way, isn't really a programming language because it is incapable of running a script (unless the script is written in some other programming language.)
For example, here is the classic "hello world" program in Python 3:
print ("hello world")
and the same program in Python 2:
print "hello world"
and for comparison, in Java:
class NameOfProgram{
public static void main(String[] args){
System.out.println("hello world");
}
}
Just so you know, all the symbols and syntax junk does become natural very quickly, so some languages looking weird will still be easy to learn.
+ 1
If do you like web development go to HTML, CSS and Javascript else i suggest you Python because its easy and powerful (and this is really relative but innegable) ... Anyway here you can find some useful link to programming resources:
https://code.sololearn.com/WaVusr8J1KvK/?ref=app