vote up 10 vote down star
4

The certification's cost between $300-400 per exam which is pretty expensive.

I'm still a java newb but eventually I would like to get a job in the field of computer programming and I'm wondering if the Sun Java certifications would help.

Especially considering that I do not have the time or money to get a degree.

flag

60% accept rate
not programming related? it is a joke? – dfa Jun 13 at 7:34
5  
One warning flag: if you don't have the "time" to get a degree, I don't foresee tremendous success in a career which requires MASSIVE time at the keyboard and self-study. There is not, in my experience, a "short path" to becoming a good coder...and having an alphabet soup of leters after your name won't help you keep any job you land: you need experience. – DarkSquid Jun 13 at 8:20

10 Answers

vote up 20 vote down check

In general, certifications are only "worth it" if you know they will help you get a job. If you're trying to start your programming career, my guess is that actual programming experience (rather than exam certification) will be much more valuable in the long run. My guideline is to not shell out for something like a certification unless someone is asking for it. For example, if a large portion of job listings you might apply for are asking for certification, it's a better idea than if nobody seems to care either way.

Ask employers how they feel about Java certification, and what qualifications they consider to be most important in potential hires. If you're passed over during hiring politely ask what might make you more likely to qualify for a similar position, and if they have any recommendations. If you go about it the right way, employers are generally happy to provide some useful feedback.

Overall, the most important thing you can do is code, code, code, and make sure you love doing it. Writing code because the money is good will get old fast, but writing code because you love to (and getting paid for it!) is the best you could ask for. :-)


Edit:

I also don't want to discount the helpfulness of books. Here are a smattering of good Java books that you may find useful — I suggest reading reviews (and skimming through them at a bookstore if possible) before purchasing.

As with any programming book, your perception of their usefulness will largely be a function of your understanding of any programming concepts the author may consider a prerequisite. Depending on your skill level, you may want an introductory book as well. I don't have any specific recommendations there, but if you do buy one, be sure it was published fairly recently (in the last 2-4 years, I'd suggest) so you don't miss out on recent additions to Java.

link|flag
+1 - Nice effort. – duffymo Jun 13 at 16:18
vote up 9 vote down

I did my SCJP together with a few collegues. Most of us had a few years of java experience. To pass the exam, you have to learn a lot of the nooks and crannies of the language and the standard libraries (java.lang, java.util, java.io). To me, a lot of the stuff I learned seemed pretty obscure and not directly useful. It took us quite a few months to prepare for the exam, so it is a major undertaking.

The SCJP does not teach you "programming", it doesn't even teach good programming practices. It's only about java-the-language and a few of its libraries.

link|flag
vote up 4 vote down

I did a degree in computer science and software engineering, but it didn't include much Java programming. So I also did the SCJP after graduating.

The irony is that the degree will get you the job but it won't teach you much about programming in Java. The certification will teach you about programming in Java but it won't get you a job.

If your goal is to get a job as a Java programmer and doing a degree is not an option for you, this is what I would do.

  • Consider doing a shorter course. I know people who did a year long course at a technical institution and it was much more practical and much cheaper than a degree. At the end of it, their programming ability was probably better than mine after having done a software engineering degree.
  • Do the Java certification. Better to have the certification and no degree than to have neither. But take your time to make sure that you get a good score.
  • Read books on Java.
  • Do plenty of programming in your spare time. Consider joining an open source project. If you're not already in a work environment then this is the best way to see source code that was written by experienced programmers.

The SCJP has never been very useful for getting job interviews or getting hired. I've looked at hundreds of job ads over the years and only a handful of them mention certification. But you need something to be able to show potential employers. And the SCJP is better than nothing.

link|flag
I agree with you for the most part, but suggesting SCJA/SCJP as a "just in case" scenario is still a waste of several hundred dollars. The idea of taking shorter programming courses is a great idea — an instructor is much more likely to teach you programming than a certification. Well-respected Java books would probably be better than the certification as well, since you can use them as a reference when you get stuck on a programming problem "in real life. – Quinn Taylor Jun 13 at 15:04
1  
Bear in mind that the original poster's goal, as far as I understand it, is to get a job without having any previous experience. In order to do that he has to be able to show something on his CV that will get him an interview. For that purpose, the certification is better than a list of 'books I have read' (BTW very good list you posted). If you've got nothing else to put on your CV then I would definitely spend the $300. To put things into perspective, I spent $30,000 on a degree and it didn't teach me how to program well but it got me through the door for an interview. – Kevin Stembridge Jun 13 at 18:07
vote up 4 vote down

Speaking with my interviewer's hat on, and as someone who has spent a not inconsiderable amount of time trawling through endless applicant CVS, I can say that the Sun qualifications (and by extension, most profressional qualifications in this field) are near worthless. If I couldn't pick between two CVs and the only difference was that one had a Sun qualification, that might tip the balance. Maybe.

link|flag
vote up 4 vote down

I don't believe that Java certifications will help you get a job.

I've got two certifications from Sun, but I've never had anyone ask about them. I don't list them on my resume anymore.

The problem is that the exams really aren't very rigorous. For the base developer's exam, you buy a book, learn the minutia of the core packages, pay your fee, and sit down in front of a computer to answer some questions. It's not too hard. It says you knew enough about the syntax on that day, but it doesn't mean you can code or design well.

They've got other exams now, but I believe they all suffer from the same problem: a lack of rigor.

Some exams are worth it. The Cisco networking certifications are very difficult to get. I'm told that one of their exams means going to a facility for the weekend. You walk into a room and have to find, diagnose, and fix a problem that's unknown. When you go home that night they come back and screw things up in a different way and ask you to do it again.

THAT'S rigor.

If you have Cisco network certification, it's a golden ticket.

Not so with Java certifications. Sorry.

link|flag
vote up 2 vote down

Will Java certification help you get a job? Probably not.

Will Java certification give you a broad and deep understanding of Java that will be of value to you when programming in Java? Yes.

As you are a "newb", you should expect to spend considerable time studying for the Java certification. It's no walk in the park.

link|flag
2  
"Will Java certification give you a broad and deep understanding of Java that will be of value to you when programming in Java? Yes." Not necessarily. I've interviewed people who have high scores in SCJP and could not explain what the protected keyword implies. Nothing can beat hands on programming. – talonx Jun 13 at 8:22
SCJP is broken, you can find answers on-line. protected keyword is useless in SCJP, you should ask them what initialize first. many times bad programmers are better in SCJP, because good ones write code in a way that you know what initialize first without thinking about it. i bet they know static keyword very well. – 01 Jun 13 at 13:05
+1 I also think it will not help in a direct way. But if you want to become proficient in Java I think it is interesting to know what Sun seems to think is important about Java. – Bruno Ranschaert Jun 13 at 14:51
2  
+1 He said that the cert would give an understanding that will be of value, and that is true. Will it be complete? No - that's what experience is for. But certs do force you to look at parts of the language and framework that you may remain ignorant of otherwise. Just because certs have been misused doesn't make them worthless. – Scott Ewers Jun 13 at 15:39
You can find out "what Sun seems to think is important about Java" without paying to take an exam. Good Java books will help, as will following development of upcoming versions of Java (currently Java 7). Experience is the best teacher. Studying (nearly) everything there is to know about Java is time-consuming, you'll only use a fraction of what you learn, and "cramming" makes it much more likely that you'll have forgotten what you learned by the time you need it anyway. :-) – Quinn Taylor Jun 13 at 18:56
vote up 2 vote down

If you want to learn the internals of the Java language including the various intracacies etc... then the SCJP is a great way to learn.

http://ca.sun.com/training/certification/java/scjp.xml

It's deifinately a worthwhile experience and it'll put you ahead of the majority of mediocre Java programmers out there. The way in which you prepare for the exam is very important though, if you want to retain the knowledge after the exam.

I think you can learn a lot from the literature and it will help you towards get a job if you can demonstrate a deep understanding of the language. However, as mentioned here I don't believe it will improve your general design skills and use of the language. Knowing the constructs is one thing, applying them is a different matter altogether. I suggest taking a good look at a study guide, e.g.:

http://www.amazon.com/SCJP-Certified-Programmer-Java-310-065/dp/B001NEKIG8/ref=sr_1_2?ie=UTF8&s=books&qid=1244916386&sr=8-2

and then apply each concept you learn in the form of a simple test program. Explore this and question the very nature of the concept, read around it and it will help greatly.

I don't think the Sun Certified Web Component Developers (SCWCD) exam is worth taking personally unless you want to learn specific technologies. The SCWCD is too focused towards JSP, Servlets and tag libraries and in the real world you'll probably end up using web application frameworks. I think you can learn the lifecycle in an academic manner and then treat the tag libraries the same as you would any API.

http://ca.sun.com/training/certification/java/scwcd.xml

These are useful but I don't think a deep understanding of these (through exam prep) will help you. The SCJD is more hands on and prepares you via an assignment and essay. It may be worth doing, although I've not heard encouraging advice from those who have taken it and passed.

http://ca.sun.com/training/certification/java/scjd.xml

link|flag
vote up 1 vote down

I will also say: YES.

When i was starting as Java Programmer on every job interview they asked me some puzzles about java and even really big tests. Now I have SCJP and if they ask me any dumb question I say about it and they back off(i think they are not offended by it).

SCJP gave me very little, its all about little tricks, how bad written code works and compilation errors. However i think it can be very usefull in interviews(if you get annoyed by SCJP type of questions). Plus if you have SCJP at least employer know you can code in Java(and if they have weak computers you can do that without IDE).

link|flag
vote up 0 vote down

Don't do a certification just for fun, only if it helps you get a raise or get a job, better position. As you're new with Java, I wouldn't do it right away at all.

link|flag
vote up 0 vote down

Every course, exam, etc. raise your motivation to learn, beacause you are oriented to achieve better results. The lesser money you have to spend on courses/study, the more motivated you will be.

If you start your career in Java, passed certtification would be someting to fill blanks in your resume it that area.

Finally, you should try Java Black Belt - community site for Java & open source skills assessment. It is dedicated to technical quizzes about Java and related technologies.

link|flag

Your Answer

Get an OpenID
or

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