Could somebody categorize these languages | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Could somebody categorize these languages

What I mean is that HTML is a scripting language and c/c++ are object oriented programming language So could you just tell me 2 things what are these and where are they used Html, css, xml, json, perl, javascript, java, cpp, python, php, django, unity,ruby Please mention any other languages that you guys know of

21st Nov 2018, 7:14 PM
Ash
2 Answers
+ 3
Basically, all scripting languages are programming languages. The theoretical difference between the two is that scripting languages do not require the compilation step and are rather interpreted. For example, normally, a C program needs to be compiled before running whereas normally, a scripting language like JavaScript or PHP need not be compiled.   Generally, compiled programs run faster than interpreted programs because they are first converted native machine code. Also, compilers read and analyze the code only once, and report the errors collectively that the code might have, but the interpreter will read and analyze the code statements each time it meets them and halts at that very instance if there is some error. In practice, the distinction between the two is getting blurred owing to improved computation capabilities of the modern hardware and advanced coding practices.
22nd Nov 2018, 9:43 AM
Rishabh Sikarwar
Rishabh Sikarwar - avatar
+ 1
Rishabh Sikarwar thanks for help
22nd Nov 2018, 6:32 PM
Ahmad Abomahmod
Ahmad Abomahmod - avatar