easy language for start

Advice -- where to start programming.
i would like to start studying a easy programming language but this has very high demand and pay good money, all my experience is in network, wireless and windows server. What do you suggest? Thanks for your multiples advices.
i would like to start studying a easy programming language but this has very high demand and pay good money, all my experience is in network, wireless and windows server. What do you suggest? Thanks for your multiples advices.
Comments
Forum Admin at www.techexams.net
--
LinkedIn: www.linkedin.com/in/jamesdmurray
Twitter: www.twitter.com/jdmurray
A language that is hot right now and may have a high demand in the future is Python. Ruby is also very popular and increasing in usage.
Forum Admin at www.techexams.net
--
LinkedIn: www.linkedin.com/in/jamesdmurray
Twitter: www.twitter.com/jdmurray
Fall 2016: Start PhD in Mathematics [X]
there are PHP jobs out there too
python scripting will also help in some tasks for server administrating
i really hate java >< freaking hard! (well-paid though)
Do you have ANY experience programming at all?
Many people will say to start with C to learn the concepts of programming. I really think that if you are trying to find a position in programming, you don't want to take a year to learn C, then start something else and take another year to learn that.
Since most big businesses are windows environments, I will recommend two languages.
First, C#. In my opinion, C# is a lot easier to grasp for beginners than Java. A big part of this is Visual Studio. If you use Visual Studio Express to create your programs, there is a lot of "dragging and dropping" when creating forms, buttons, picture boxes, etc. So a lot of the repetitive work is done for you. Some say this is good, some say it's bad. I believe it is helpful because you can let the IDE create, say, a form and a SQL database for you. Then, you can spend your time learning which methods you need to create in order to make your form do what you want it to do. Head First C# is a great book.
Second, Powershell. If you don't know what Powershell is, it is a very powerful scripting language that was created my MS. The best part about learning Powershell, is that not many people are really doing it. I hope someone chimes in on this as well, but mastering Powershell is VERY advantageous. As the demand for this language grows, so will the jobs associated with it.
Also, I forgot to mention, Powershell is extremely easy to grasp. Every cmdlet (command let) is in a 'verb-noun' format, making it easy to remember them, for example, to print the ever popular "Hello World" to the screen, you would use:
write-host = "Hello World"
No semi colon. No case sensitivity. Pure beauty.
And the use of aliases will help you if you have experience with other languages. For example, if you want to view the directory of the folder you're in, you can surely use the powershell cmdlet:
get-childitem
or you can use
dir (cmd command)
or even
ls (linux command)
or you can create your own alias!
Powershell cookbook is a great resource. Also, you can learn a lot of powershell just by using google.
Hope this helps.