Just wanted to update
After a complete resume overhaul, My cousin has been averaging 5-7 calls a day. Has 3 interviews set up next week.
What are some good languages to learn? I plan on starting my associates in Information systems and I have the option of learning SQL(mandatory) and 2 other languages. The choices are java , JavaScript, php, c++, perl, and Visual Basic. I'm not interested in game programming. More leaning towards software and web development.
Multi-QuoteReply
Just wanted to update
After a complete resume overhaul, My cousin has been averaging 5-7 calls a day. Has 3 interviews set up next week.
did you got to devry or ITT tech
Alright brehs, my comp sci course is using visual studio to teach c++, but going extra slow.
Any good sites that use visual studio to teach c++? For any other comp sci majors, I'm looking for things right before the first data structures course.
http://www.amazon.com/C-Programming-Language-4th-ebook/dp/B00DUW4BMS/ref=sr_1_1?s=digital-text&ie=UTF8&qid=1395852867&sr=1-1&keywords=c%2B%2B
Just wanted to update
After a complete resume overhaul, My cousin has been averaging 5-7 calls a day. Has 3 interviews set up next week.
I'm really still trying to wrap my mind around 'prototype-based' object-oriented programming. I can kind of see why people don't recommend Javascript as a first language. Thank God for Wikipedia
Unlike class-based systems where objects inherit properties based upon hierarchy, I see that you have to manually link objects together and you essentially create a 'prototype chain'.
I'm hoping that since JavaScript is the first language i'm learning then everything else will be simpler
hopefully
sweet jeebus I understand this codeYeah, once you learn Javascript, other languages will definitely be easier to learn. Stick with it, since you're already doing it and working with web development. I just wouldn't recommend it to someone who never picked up programming and was asking for a place to start since it uses a form of object orientation (prototypical) that is different than what most other languages use (classical). It also has a lot of interesting quirks. It'll just take a little while to really wrap your mind around prototypical inheritance on a deep level and to also understand that everything is an object. What's so bizarre about that is you can create an array like this:
var test = [1,2,3,4];
but since an array is actually an object, you can assign it properties and methods. Here I'm giving it a simple method to multiply two numbers:
test.multiply = function(x,y) {return x*y;};
and then you can call it to multiply two elements inside of it's own array
test.multiply(test[2], test[0]);
The fact that nearly everything, including functions and arrays are types of objects lets you do things like that.
sweet jeebus I understand this code
yeah I just figured out the whole everything is an object from this book i'm reading
to anyone doing sites like codecademy read a book on what you just learned, there's so much more to it then what you learn there.
They didn't tell me that I could create a variable in a functions,Date(), different Math methods, etc.