Algorithms and programming [closed]

2

What do I need to learn before going to the subjects?

    
asked by anonymous 31.08.2015 / 03:02

1 answer

2

If you feel like learning how to program applications or even web pages, that's a good start. There are a number of free options that can teach you the first steps. One of them would be w3schools that teaches from html , css , javaScript and some concepts from PHP , XML and SQL .

But it's good to start with html and then get to know CSS . At this site you can learn online and test your own codes after reviewing the lessons learned.

You can also learn how to program through XTI university

Through these videos she can teach you from the beginning to a very advanced level with well-crafted lessons.

Also you can read the handouts of the Caelum for object-oriented programming in java

I could not fail to point out that before learning an object-oriented language, you should learn the structured programming that is an algorithm development discipline, regardless of its complexity and the programming language in which it will be encoded, which facilitates understanding of the solution through a restricted number of encoding mechanisms.

You will learn the types used to create variables and solve mathematical problems.

  • Will create conditional statements

  • You will learn the repeat commands

  • Creating functions

  • And much more ...

For structured programming choose C , there is also Pascal . Once you have chosen the language you drop IDE to create and compile your own algorithms!

Yes, after that you can learn Object Oriented Programming.

    
31.08.2015 / 03:20