0
What is coding?
I know itās a language/recipe that computers understand, but Iām confused to exactly what each different language does. Iām going through the html ācourseā right now. Iām just confused about what it accomplishes and how I can use it on an actual computer
2 Answers
+ 8
You can think of coding or programming as simply giving a set of instructions to a machine. Each language has its own syntax and rules and so each requires some kind of an interpreter -- an application or an environment.
For example, the HTML you are learning is "understood" by web browsers (IE, Firefox, Chrome, Safari and others) and "translated" into webpages layouts. It is a *markup* language, which means only a really high-level hint of an object is needed to actually "invoke" it.
For example: you write <a href="yourlink">Your text</a> and behind the scenes the browser already knows how to handle it and make it clickable.
Other languages are more complicated as you need an interpreter or you have to compile your code into a ready application, but that's another story :)
+ 1
In general,What I can realize by coding is that I have to write program according to instructions and that program can lead a machine or something else!!
And thanks Kuba SiekierzyÅski sir for your answer with explanation!!