Has anyone taken any Java tests supplied by IKM (International Knowledge Measurement)? I would be interested in hearing how complex they are, compared to, say the Java certification exams from Sun/Oracle.

link|improve this question

feedback

7 Answers

up vote 2 down vote accepted

so that it doesn't come off as a case of sour grapes, i preface my reply with this: i took the ikm j2ee exam back in 2007. although i honestly don't recall whether or not i was presented with a score or grade on completion, i was invited for a face-to-face interview by the employer that sponsored the exam. so, i have to assume i - at least - didn't fail the ikm exam.

i've taken 2 sun certified exams (scjp & scwcd). i've taken 5 or 6 brainbench cert exams (j2ee, java, ooad, perl, jsp, etc). of all of the exams i've listed, ikm's are the only ones whose questions are intentionally badly-worded. it's as if ikm's questions are written by somebody who has only a tourist's command of the english language.

ikm seem to take the approach, that because a question is difficult to understand because it is poorly written, then the question must be, therefore, technically challenging. they're wrong! what it really means is, the authors of ikm's questions do not know how to correctly form sentences in the english language. the thing i found the most challenging about ikm's exams is understanding the english language syntax of ikm's questions themselves (as opposed to the programming language syntax).

here's an interesting link (a forum thread about ikm's c++ exam) where one poster eloquently sums up the rationale for ikm's "methodology":

...If you want to game the test, go to the C++Faq and learn as much obscure syntax as you can, and then go through Meyers and just memorize as many rules as you can. If it's a multiple choice test, most of it is going to be on obscure and useless bits of knowledge, so just cram as much obscure and useless bits of knowledge as you can.

The goal is to get your score high enough so that you get the face-to-face interview. Once you get the face to face interview, then the test is forgotten.

You need to understand what the purpose of the test is. Getting a really high score is useless, since getting a high score on these things just involves memorizing useless bits of trivia...

if you speak and/or understand pidgeon english, there's a good chance you will excel at ikm's exams. if you're a native english-speaker however, good luck! you're gonna need it!

link|improve this answer
feedback

Today I did the IKM J2EE Exam. It was not that difficult rather complex. I have done SCWCD and SCBCD exams but this one is so complicated comparing to both. You find different questions depending on how you perform therefore, can't exactly say what level of questions you will appear.

Considering the exam coverage, it was nothing but theory!! I have more than 5+ years of J2EE/JEE dev. experience but I some parts of the exam questions were never used and we don't want to by-heart API's since we are given rich IDE's that guide us with methods and correct signatures. Wonder why these job recruiting companies don't understand this ??

link|improve this answer
feedback

IKM is one of the harder test that I taked in my life. I think that it is´n the best way to test a java developer. Obscure code, nonsense questions about inheritance... 90/10 80% percentile. I´m happy but expecting that my future role wont be write obscure Java code.

link|improve this answer
feedback

I have to agree with the other comments. I passed SCJP and SCWCD with no problems and have over 10 years of java experience. I took an IKM test recently for a recruiter. The grammar of the questions was shockingly bad, some of them made no sense at all. The answers were very often ambiguous and badly thought out. As for the content, all that was being tested was API knowledge. This often involved knowing method signatures from obscure and rarely-used parts of the API. This test would not distinguish a good programmer from a bad one, in fact all it really tests is the ability to look things up and to understand poor English. I passed and got through to interview, so it wasn't a total waste of my time, but in my opinion it offered no value to the prospective employer. I would never use an IKM test to recruit onto my team.

link|improve this answer
feedback

I found it slightly harder than SCJP. There was a combination of Java language questions and also Spring/ Hibernate questions. It was open book and I was able to sit at home. It was a web based test and the pages presented were JSP's.

I had netbeans running at the same time so was able to test code snippets. The test did not allow Ctrl key events, (so you cant copy the code), if you do this the test will become unauthorized and you will have to get it reset by the testing agency.

link|improve this answer
feedback

I concur with the answers above - if the job that you're being tested for fits the following criteria then the test is useful, otherwise it's missing the point:-

  • a) you will be writing all code by hand, no IDE, possibly using pencil and paper
  • b) you will be banned (physically) from looking up any API details
  • c) your job involves knowing, without reference, the method signatures of the java.io.BufferedReader class

Oh and don't dare press CTRL otherwise you fail.

link|improve this answer
feedback

Took the IKM test for Java SE5 last night. Scored 99 and ended up in 94% percentile. It feels a bit like going backwards considering I got my OCPJP 6 certification (previously known as SCJP 6) a few months ago. I consider both exams a bit unrealistic because in real life you'll have an IDE and API reference to figure out the answer to most of the questions (which are very similar in both exams). However, I think IKM is a bit harder than OCPJP because:

  • The better you perform, the harder the questions become. Beyond a certain point, they begin to seem a bit ridiculous e.g. I'm not sure why I should know the priority of the java GC thread relative to that of the main thread (and other similar threading intricacies)...or why I should be looking out for static variables secretly hidden in a massive page of code with multiple subclasses inheriting from a super class, ArrayList in one subclass and Set in another subclass etc...can't knowledge of collections API and static keyword be tested in separate questions? or at least a question with fewer lines of code? Don't even get me started on some crazy code I saw which were apparently aimed at testing knowledge of java.io package (i.e. BufferedReader, FileReader etc)

  • In OCPJP, if there are multiple answers to a question, that will be stated in the question (if I remember the test clearly). However with IKM, you take the entire test with the knowledge that you have variable (and sometimes up to 3) answers to any question and it's up to you to figure out all the right answers - without picking wrong ones.

  • With OCPJP, you just get a score at the end of the test while with IKM you get both a score and a percentile. I hope recruiters don't pay much attention to percentile cos the 1st time I took the test I had score(96), percentile(79%). 2nd try: score(99), percentile(94%). If I ever have to take it a 3rd time, I'll probably get a higher score (and percentile) thereby making it even harder for first timers to get a good percentile ranking.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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