vote up 0 vote down star

What are the top 5 (or more) programming(or programming language) skills should I acquire to find an entry level programming job quickly as a fresher?

flag

Fresher? College freshman? – Schwern Oct 25 at 19:38
Yes. Fresher. College freshman. – JMSA Oct 25 at 19:39
Skill 11. Stop using freshman slang :) – DVK Oct 25 at 19:41
2  
Fresher is standard British English for a first year university student – Michael Dillon Oct 25 at 19:48
Them English have weird ways... (spoken in my best Amish accent) – DVK Oct 26 at 7:14

closed as subjective and argumentative by DVK, Michael Petrotta, mjv, 01, bobbymcr Oct 25 at 20:13

6 Answers

vote up 2 vote down check
  • Skill to find a way to gain practical experience before looking for that job. (internships, FOSS, volunteer).

  • Communications. I don't care what languages you know, if you can't parse what i'm explaining to you and spit it back out at me so I know you got me.

  • Some procedural language. C++, Java, whatever is in vogue.

  • Some OOP-ish language. C++, Java, C#, pick your poison.

  • Some dynamic and/or scripting language. Perl, Python, PHP, pick you side of the Holy War.

  • Some Database knowledge. T-SQL, ANSI SQL, whatever.

  • Basics, at least, of Web coding. JavaScript, HTML, CSS, AJAX

link|flag
vote up 1 vote down

The whole stack of web and other network programming technologies is in hot, hot demand -- HTML, CSS, Javascript, some JS frameworks, rudiments of web UI and UX design, HTTP and all its trimmings and refinements, server-side languages (Java, Python, Ruby, C#, but also exotic ones such as Erlang), frameworks (Rails, Django, GWT, and the many, MANY other possibilities for Java and C#), databases (relational, key-store, Linq in the case of C#, etc). I'm not sure how many skills this counts as -- probably many dozens (especially once you consider how many more specialized APIs for various important web services -- from Amazon's cloud offerings, to Salesforce's, to Google's, Yahoo's, Paypal's, ... -- you might be required to know for a variety of specific jobs). You'll probably need to pick and choose a few options at each level of the stack, fundamental ones so that you can claim the ability to learn newly needed stuff at the same level at warp speed, and make good on those claims.

In web, network and any other kind of programming, deep competence in algorithms, data structures, development methodologies (especially agile ones), release engineering, i18n and L10n, fundamental tools such as version control systems, continuous build systems, issue trackers, editors, IDEs, and the like, will always be welcome to any sensible employer. Again, it's hard to count how many skills this means, and again, the fundamentals are what matters most as they empower you to pick up new tricks as needed (e.g., if you master svn and git, picking up mercurial, bazaar or perforce will be much faster for you than for anybody with no VCS experience or experience in only one VCS) -- the best employers understand this (and right now there are probably most jobs available with the best employers -- since those will also be the firms who are already in full recovery mode from the economy's travails -- than in run-of-the-mill shops, which are more likely to be still staggering under economy-related problems).

link|flag
Actually, for a college student, I would find it worrying if they did not have some experience in HTML, CSS and even simple JavaScript, regardless of the main programming language that they know. – Michael Dillon Oct 25 at 19:50
vote up 0 vote down

Showing a genuine interest i programming and ability to communicate.

Have a look at Spolsky's book on recruiting programmers, to see what recruiters and employers work (or should work): http://www.amazon.co.uk/Smart-Gets-Things-Done-Spolsky-27s/dp/1590598385/ref=sr%5F1%5F2?ie=UTF8&s=books&qid=1256499110&sr=1-2

link|flag
vote up 0 vote down

for new graduate my tips are

  1. good knowledge in OOPS
  2. Good communication
  3. have a basic idea in SQL
  4. knowledge in latest technologies
  5. good in aptitude
link|flag
vote up 3 vote down

Here are some things I look for in a new graduate:

  • A strong ability to communicate technically.
  • A genuine interest in the subject (as opposed to a simple desire to get a job).
  • A history of extra-curricular activity: your own projects, Open Source projects, helping with friend/family IT.
  • An ability to learn quickly, to pick up new technologies easily.
  • The basic underlying knowledge that allows you to hit the ground running: data structures, algorithms, Big O notation, etc.

Note the lack of any specific programming languages in that list - with all of the above, you don't need them. Anyone who's hiring for the long term should be looking at potential and ability, not knowledge. You need to be able to code, of course, but you don't need a laundry list of specific languages and technologies.

link|flag
+1, especially for last bullet point – DVK Oct 26 at 7:15
vote up 2 vote down

Communication. It covers the top 10.

link|flag
I would add "Ability to put one's ego aside" – Peter Mourfield Oct 25 at 19:32

Not the answer you're looking for? Browse other questions tagged or ask your own question.