how software is made?
basically its a computer program,known as software, is made up of ones and zeros. This is known as binary and it is the only thing the computer understands how do we get from an idea to the finished software? Writing the binary yourself would be slow, tedious, and take way too long. Instead we'll use something called source code. Source code is the instructions to the computer that is meant to be human readable with a little practice that is Source code can be written in one of many different programming languages. These are the main ones in use today. Here's a very simple program written in a programming language called C++. This program simply displays the words "Hello World" to the computer screen. In order for the computer to actually run the program the source code must be turned into binary. This process is called compiling. Once we have our ones and zero the computer can then run the program. If there are any mistakes in the source code such as...