What does a coder use when they make a program from scratch?

882 views

I don’t understand what the starting point is. Do they just open a word document and start creating lines of code or is there some type of program that’s specifically used?

In: 1291

25 Answers

Anonymous 0 Comments

Trying to ELI5:

At my job, we have a computer that has a program, that can read and execute other programs.

We can just open notepad, type in the proper commands, upload it to the machine and the machine is gonna execute your program.

That machine has an address and can show the result of your program in a browser

<?php echo “Hello World!”; ?>

This would write the text, hello world in your browser

It is all programs upon programs upon programs. The root of it all is written with 0s and 1s, machine code.

You are viewing 1 out of 25 answers, click here to view all answers.