Skip to content

Commit f764453

Browse files
authored
Merge pull request #33 from java/cert-jeanne
cert article ready for review
2 parents 4ed0f16 + 169c4c6 commit f764453

File tree

6 files changed

+102
-0
lines changed

6 files changed

+102
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@ node_modules
22
site
33
.DS_Store
44
.env
5+
.idea
56

67
**/*.pdf

app/data/authors.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,15 @@
3939
website: https://agiledeveloper.com/
4040
description: |
4141
Venkat Placeholder.
42+
43+
- name: Jeanne Boyarsky
44+
email: nyjeanne@gmail.com
45+
photo_url: https://www.selikoff.net/wp-content/uploads/2019/05/jeanne-headshot.jpg
46+
github: boyarsky
47+
twitter: jeanneboyarsky
48+
website: https://jeanneboyarsky.com
49+
description: |
50+
Jeanne is a Java developer and Java champion in NYC. She is one of the leaders of javasig.com and mentors a high school robotics team in her free time.
4251
4352
- name: Cay Horstmann
4453
email: cay@horstmann.com

app/data/javadoc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1406,4 +1406,5 @@
14061406
"Security.getProviders()": "java.base/java/security/Security.html#getProviders()",
14071407
"Security.addProvider(java.security.Provider)": "java.base/java/security/Security.html#addProvider(java.security.Provider)",
14081408
"Security.insertProviderAt": "java.base/java/security/Security.html#insertProviderAt(java.security.Provider,int)"
1409+
14091410
}
Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
---
2+
id: java-cert-overview
3+
title: Getting Started with Java Certification
4+
slug: learn/java-cert-overview
5+
type: tutorial
6+
category: resources
7+
layout: learn/tutorial.html
8+
subheader_select: tutorials
9+
main_css_id: learn
10+
toc:
11+
- Why get Java certified? {motivation}
12+
- What certification exams are available? {cert-list}
13+
- Should I wait for Java 21? {java-21}
14+
- What is covered {topics}
15+
- How to study {study}
16+
description: "Overview of the Java Certification and how to study"
17+
last_update: 2023-07-30
18+
author: ["JeanneBoyarsky"]
19+
---
20+
21+
<a id="motiviation">&nbsp;</a>
22+
## Why get Java certified?
23+
24+
Learning and jobs reasons tend to be the most common reasons to get a Java certification.
25+
26+
1. If you are new to Java, a Java certification can help you learn Java more deeply and thoroughly. If you are experienced in Java, a certification can do the same for learning what is new in the latest versions of the language. For example, have you mastered text blocks yet? Even the edge cases?
27+
2. If you are looking for a new job, putting Java certification gives you a talking point on your resume. It also gives you deeper knowledge for the interview. If you aren't looking for a job, it can show your employer that you are keeping your skills up to date or even help with a job transfer.
28+
3. If you are using Java at work, doing your job better. By studying for a Java certification, you learn more Java APIs and problems that can occur in your (or teammates) code. This helps you solve problems faster and become more productive.
29+
30+
<a id="cert-list">&nbsp;</a>
31+
## What certification exams are available?
32+
33+
There are currently five active Java certification exams.
34+
35+
1. [1Z0-829: Java SE 17 Developer exam](https://education.oracle.com/java-ee-7-application-developer/pexam_1Z0-829) - 50 questions, passing 68% - This Java 17 is the most recent certification exams available.
36+
2. [1Z0-819: Java SE 11 Developer exam](https://education.oracle.com/java-ee-7-application-developer/pexam_1Z0-819) - 50 questions, passing 68% - For Java 11, the exam was launched in two parts like Java 8 (1Z0-815 and 1Z0-816). It was consolidated into a single exam, the 1Z0-819.
37+
3. [1Z0-808: Java SE 8 Programmer I exam](https://education.oracle.com/java-ee-7-application-developer/pexam_1Z0-808) - 56 questions, passing 65% - For Java 8, the exam was split into two parts. You earn a certification for each one. . Taking this first half gives you a more basic certification while you work towards the 809.
38+
4. [1Z0-809: Java SE 8 Programmer II exam](https://education.oracle.com/java-ee-7-application-developer/pexam_1Z0-809) - 68 questions, passing 65% - This is the second half of the Java 8 exam.
39+
5. [1Z0-811: Java Foundations exam](https://education.oracle.com/java-ee-7-application-developer/pexam_1Z0-811) - 60 questions, passing 65% - The foundations exam was introduced for those in Oracle Academy. It is far less common than the other exams. It uses Java 8 as well.
40+
41+
42+
Most people start with the 1Z0-808 (if you want to get an easy certification faster and build on it) or 1Z0-829 (for the latest). It is very important to use study materials that match the exam you are studying for. As a result, those who hold Java 11 materials target the 1Z0-811 exam.
43+
44+
<a id="java-21">&nbsp;</a>
45+
## Should I wait for Java 21?
46+
47+
You might have noticed that the exams target Java versions matching the LTS (long term support versions). I recommend taking an exam that is available when you want to start studying rather than waiting for the next version. It typically takes a number of months after the LTS release for the objectives/exam to come out. Then it takes time for updated certification study materials to come out. It's *a lot* harder to pass the test without study materials.
48+
49+
Additionally, one of the benefits of a faster LTS release cycle is that the language syntax can evolve more rapidly. As a result, taking the Java 17 exam is likely to meet your goals and no need to wait for the next exam to come out/study materials to be updated.
50+
51+
<a id="topics">&nbsp;</a>
52+
## What is covered?
53+
54+
Each exam (see links above) has the objectives posted under "review exam topics". There are a number of top level objectives. For example, exam objectives covered in Java 17 ones are:
55+
* Handling date, time, text, numeric and boolean values
56+
* Controlling Program Flow
57+
* Utilizing Java Object-Oriented Approach
58+
* Handling Exceptions
59+
* Working with Arrays and Collections
60+
* Working with Streams and Lambda expressions
61+
* Packaging and deploying Java code and use the Java Platform Module System
62+
* Managing concurrent code execution
63+
* Using Java I/O API
64+
* Accessing databases using JDBC
65+
* Implementing Localization
66+
67+
Then for each one there are more detailed sub-objectives. For example, the first one has
68+
* Use primitives and wrapper classes including Math API, parentheses, type promotion, and casting to evaluate arithmetic and boolean expressions
69+
* Manipulate text, including text blocks, using String and StringBuilder classes
70+
* Manipulate date, time, duration, period, instant and time-zone objects using Date-Time API
71+
72+
Your study materials will give your more details on what you specifically need to know. They will also teach you what you need to learn, point out tricks and practice questions. You should also write lots of code. It's like math; you learn better by doing as you learn!
73+
74+
<a id="study">&nbsp;</a>
75+
## How to study?
76+
77+
If you subscribe to Oracle University, there is a [24 hour video class](https://mylearn.oracle.com/ou/learning-path/become-a-java-se-17-developer/99487y). If not, there are two books: [Wiley's Sybex imprint](https://www.amazon.com/Oracle-Certified-Professional-Developer-Certification/dp/111986464X) (disclosure: I wrote this) and [McGraw-Hill's Oracle imprint](https://www.amazon.com/Certified-Professional-Developer-1Z0-829-Programmers/dp/0137993641).
78+
79+
Regardless of which option you chose to study, I recommend the [Enthuware mock exams](https://enthuware.com/java-certification-mock-exams/oracle-certified-professional/ocp-java-17-exam-1z0-829). They are only $10 and you get 20 mock exams! Excellent practice after you study to get ready. The OCP forum at [CodeRanch](https://coderanch.com/f/24/java-programmer-OCPJP) is also a great place to ask questions as you prepare for your certification.

app/pages/learn/01_tutorial/07_references/01_references.md renamed to app/pages/learn/01_tutorial/08_references/01_references.md

File renamed without changes.

app/templates/pages/learn/index.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,18 @@ <h2>Getting to know the JVM</h2>
8989
</ul>
9090
</div>
9191

92+
<div class="learn-group">
93+
<h2>More Resources</h2>
94+
<ul>
95+
{% for tutorial in file.data.tutorials.resources | sort(false, false, "category_order") %}
96+
<li>
97+
<a href="/{{ tutorial.path }}">{{ tutorial.title_html | safe }}</a><br />
98+
<div class="desc">{{ tutorial.description_html | safe }}</div>
99+
</li>
100+
{% endfor %}
101+
</ul>
102+
</div>
103+
92104
{{ contents | safe }}
93105
</div>
94106

0 commit comments

Comments
 (0)