Back to articles
Scripting vs Programming Languages

Scripting vs Programming Languages

via Dev.toVidya

When starting in software development, many learners get confused between scripting languages and programming languages. Are they different? Or just two names for the same thing? In reality, both are closely related—but they serve different purposes and are used in different scenarios. This blog will guide you from beginner basics to intermediate understanding, with clear examples. What is a Programming Language? --> A programming language is used to build complete software applications. It provides full control over hardware and system resources. --> Programming languages often use a compiler (e.g., C → machine code) --> Programming languages are generally faster because they are compiled. Examples: --> Java --> C --> C++ --> Python (can also act as scripting) Example(java program) public class Hello { public static void main ( String [] args ) { System . out . println ( "Hello World" ); } } --> This program must be compiled before execution . What is a Scripting Language? --> A scrip

Continue reading on Dev.to

Opens in a new tab

Read Full Article
2 views

Related Articles