Hi Mesharma Sharma,
First of all, a warm welcome to CodeRanch!
Mesharma Sharma wrote:I am complete beginner in Java just jump into it 3 months ago.Dont have any programming experience.
As a Java greenhorn you might benefit from reading a book on Java first (rather than a certification study guide). Many alternatives are available: Head First Java, Thinking in Java, Core Java, Deitel & Deitel, and so on. Other great resources are this forum and the
Beginning Java forum of course
and you also have the (free)
Oracle Java Tutorials.
Mesharma Sharma wrote:I have registered for the Oca Exam its on 19 May.Since last 3 months I am keep on studying myself for almost 6-8 hours per day following the Book OCA/OCP Java SE 7 Programmer I & II Study Guide (Exams 1Z0-803 & 1Z0-804) (Certification Press) with the help of some tutorials on YouTube.For mock test I am using Kaplan test and enthuware but still I am scoring very less, on an average 46% that's really a very bad score after doing this much preparation. I am pretty confident about the knowledge that I gained after completing the Syllabus but there is a big but that still I scored so low.
With the OCA/OCP Java SE 7 Programmer I & II Study Guide (also known as K&B7) and the Enthuware mock exams you are probably using the best resources currently available on the market for the OCAJP7 certification exam. So there is no need to purchase/check any other study guides. But you could always use another study guide as a complementary resource, certainly when your mock exam scores would be (very) low. In the
OcajpFaq (besides other very useful information) and
this thread you'll find an overview of all available resources (study guides, mock exams,...) to thorougly prepare yourself for the OCA certification exam. And on the
OcajpWallOfFame you'll find plenty of (links to) experiences from other ranchers (including resources they have used). So it can be useful to determine which resources are useful (and which are not).
You might be pretty confident about your Java knowledge, but the mock exam scores clearly illustrate your knowledge is currently not at the desired level. Remember that the OCAJP7 certification exam is a very hard and difficult exam, many people have failed the actual exam once (some of them even twice). You really need a very good, solid understanding of Java and OO basics, otherwise you'll probably fail the exam.
Mesharma Sharma wrote:So today finally I decided to postpone my exam in mid of June.Stopped giving mocks revise my syllabus all again thoroughly.
That's a very wise decision!
And I'm pretty confident mid June will probably be too soon as well. If your current scores are less than 50%, you'll probably need 6-8 weeks to improve your knowledge and prepare yourself thorougly for the exam.
Mesharma Sharma wrote:Could you please suggest what strategy now I follow to speed up in solving the numerical and revising the syllabus.I am very much confuse now at this stage from where to start and how ... To get through the exam ..
You didn't provide much detailed information about your preparation. You only mentioned which resources you are using and you have studied 6-8 hours per day, but no further details. Did you for example only read the study guide once (or twice), then take the practice questions and finally a mock exam? Or did you write also code snippets during your preparation? If you did write code snippets, did you use an
IDE?
If you just read the book once and think you'll be ready to pass the exam, you'll probably in for a very unpleasant surprise
Take your time to prepare thoroughly for the exam. The exam itself is really hard and difficult. Even if you know how to write a Java application, you still might fail the exam. You need a very good and solid understanding of all basic Java and OO concepts to be able to pass the exam.
Learning a programming language is like driving a car: you don't learn how to drive a car by just reading a book, you have to get your hands dirty. During your preparation you should definitely write a boatload of small code snippets, preferably using your favourite text editor,
javac (to compile your code) and
java (to run your code). On the exam you need to assess code snippets, spot compiler errors, select the correct output,... (without an IDE). Each code snippet in the study guide should be the starting point to do plenty of experiments (change access modifier, change return type, add throws clause, mark an instance method static or final, and so on). And before you compile (and run) the program, you try to predict what will happen after you made the changes. Then you compile the program (and if it successfully compiles, run it as well) and see if your expectations/thoughts were correct.
If you use the search function, you'll find plenty of topics with advice to prepare (and ace) the OCA exam. Here are a few:
Studying so hard just to fail(1z0-808)Failing Java SE 8 Programmer IBad Experience with OCA 7 examsAny tricks about how to manage the 120 min for so many question?second failed OCAJP
Hope it helps!
Kind regards,
Roel