0
Beginner
What is the first and most important code to learn to becoming a programmer.
6 ответов
0
There is not a most important but there are number of points
Languages that are both interpreted and interactive are a bit easier to start learning
It is better to start with a language that is widely used.
Python 3 is a language that answer those two conditions
Programming is largely a transferable skill. If you are able to program well in one language you will be able to learn another language very quickly: you will have to learn new words but you will already know how you need to think to program
0
thank you for this awesome reply
what about learning html?
0
Html is not a programming language. Today a web page is usually built with at least with 3 languages:
Html which describe the content of the page, this is the basis
CSS, which modify the style of the elements in the HTML
Javascript: which allows dynamic actions on the page
JQuery: which is built upon Javascript and simplifier some type of actions
On the side of the server are needed:
PHP: which is an interpreted lanaguage which describe what actions the server need to do
SQL: for the storage in the database
Usually i get the HTML and CSS from the graphist and i only need to understand the HTML well and add the needed Javascript and PHP
You should start with HTML, next Javascript. After that it will depeneds on your need, do you need to program the server side?
0
JQuery is technically a javascript library
0
thank you a lot for this.
0
no i dont need to program the server side