Skip to main content

Programming Languages

As a rookie in the vast field of computer science it's the most frequently asked question, "Which programming language should I begin with?"

I'm sharing my experience of last 7 years...



  • HTML founded by Tim Berners-Lee in late 1991 and is used to create a web-page. It's still a debate whether it's qualified for programming language or not! But still it's one of the most used coding which you can run on any platform!
Tim Berners-Lee

  • CSS founded by Håkon Wium Lie on October 10 1994. It's a highly used for graphics and most of the web-dev uses it for graphical enhancement in their websites! 
Håkon Wium Lie


  • JavaScript founded by Brenden Eich in September 1995 then it was known as LiveScript and is the trump card of HTML programmers! Due to it's power the HTML can perform many task like a programming language. JScript was announced by Microsoft which is the same programming language but with different names. It exist's independently and it has many uses in development of games and applications.

Brendan Eich

  • C founded by  Denis Ritchie in 1972 and it's the fastest programming language and most of the OS are build while using it. If you are opting for Computer Science Major you're surely going to learn C.
Dennis Ritchie

  • C++ was developed by Bjarne Stroustrup at Bell Labs which is also known as super-set of C which have extended libraries and additional features which wasn't available in C.
Bjarne Stroustrup

Python was developed by Guido van Rossum in late 1980s the most hyped language of today's era and most beginner friendly programming language you can find! It has many libraries and it's the most used language due to it's simplicity. 

Guido Van Rossum

Comments

Popular posts from this blog

Beginners Guide to Code

Coding  750+ hours and that's my advice! Which language? There's a lot of languages available you name it! Choosing the right language is a must because it will be responsible for your coding style, approach for problems solving and it's application. My first coding language was C++, if you see my code most of them follow's it style, my second language was Python, most of the approach for my problem solving follows it. Later on I started learning Kotlin and Dart and they both follow the same style as above! I will recommend you C++ if you are really into programming after that you will be experienced enough to choose any other language. Single or multiple language? Single language won't make you a good developer and that's a fact! Every language has it's unique style but why to limit yourself only to that? Programmer is analyzed by it's approach to solve a problem. Why Iron Man uses multiple armors? Because every armors has it's unique specialty. Sam...

Building a Binary Calculator With Object Oriented Programming in C++

Let's begin! Creating a basic calculator is a no biggie! So we are applying the concept of object oriented programming and making this program work until the user ask to end the task, in this calculator we can also intake the value as much as we want without restarting the program! It's one of basis and yet a core project where majority of your programming skills are used! Happy Programming!

Linux Commands

Basic Commands 1. pwd — When you first open the terminal, you are in the home directory of your user. To know which directory you are in, you can use the “pwd” command. It gives us the absolute path, which means the path that starts from the root. The root is the base of the Linux file system. It is denoted by a forward slash( / ). The user directory is usually something like "/home/username". 2. ls — Use the "ls" command to know what files are in the directory you are in. You can see all the hidden files by using the command “ls -a”. 3. cd — Use the "cd" command to go to a directory. For example, if you are in the home folder, and you want to go to the downloads folder, then you can type in “cd Downloads”. Remember, this command is case sensitive, and you have to type in the name of the folder exactly as it is. But there is a problem with these commands. Imagine you have a folder named “Raspberry Pi”. In this case, when you type in “cd Raspberry Pi”, t...