C
A programming language
C can be used to develop software like operating systems, databases, compilers, and so on.
C Example
#include<stdio.h>
int main()
{
printf("Hello World");
return 0;
}
Java Example
public class Main
{
public static void main(String[] args) {
System.out.println("Hello World");
}
}
JavaScript
The language for programming web pages
JavaScript is a web-based programming language used both on the client-side and server-side that allows you to make web pages interactive.
JS Example
<
X