<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: Don&#8217;t Panic: Oracle announces new Java OCP 11 Exam!	</title>
	<atom:link href="https://www.selikoff.net/2020/08/26/dont-panic-oracle-announces-new-java-ocp-11-exam/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.selikoff.net/2020/08/26/dont-panic-oracle-announces-new-java-ocp-11-exam/</link>
	<description>Java/J2EE Software Development and Technology Discussion Blog</description>
	<lastBuildDate>Sat, 15 Apr 2023 13:36:47 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>
	<item>
		<title>
		By: Jeanne Boyarsky		</title>
		<link>https://www.selikoff.net/2020/08/26/dont-panic-oracle-announces-new-java-ocp-11-exam/comment-page-2/#comment-326824</link>

		<dc:creator><![CDATA[Jeanne Boyarsky]]></dc:creator>
		<pubDate>Sat, 15 Apr 2023 13:36:47 +0000</pubDate>
		<guid isPermaLink="false">https://www.selikoff.net/?p=14592#comment-326824</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.selikoff.net/2020/08/26/dont-panic-oracle-announces-new-java-ocp-11-exam/comment-page-2/#comment-325035&quot;&gt;Mahdi Mohammadnezhad&lt;/a&gt;.

@Mahdi: DirectoryStream isn&#039;t in our Java 11 or Java 17 books. Sometimes there are unscored questions. Or the question is about something other than the API. Or they could have added it. Could be any of the above.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.selikoff.net/2020/08/26/dont-panic-oracle-announces-new-java-ocp-11-exam/comment-page-2/#comment-325035">Mahdi Mohammadnezhad</a>.</p>
<p>@Mahdi: DirectoryStream isn&#8217;t in our Java 11 or Java 17 books. Sometimes there are unscored questions. Or the question is about something other than the API. Or they could have added it. Could be any of the above.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jeanne Boyarsky		</title>
		<link>https://www.selikoff.net/2020/08/26/dont-panic-oracle-announces-new-java-ocp-11-exam/comment-page-2/#comment-326823</link>

		<dc:creator><![CDATA[Jeanne Boyarsky]]></dc:creator>
		<pubDate>Sat, 15 Apr 2023 13:32:34 +0000</pubDate>
		<guid isPermaLink="false">https://www.selikoff.net/?p=14592#comment-326823</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.selikoff.net/2020/08/26/dont-panic-oracle-announces-new-java-ocp-11-exam/comment-page-2/#comment-324243&quot;&gt;Mahdi&lt;/a&gt;.

@Mahdi: No. We are not updating the Java 11 book. The Java 17 book covers this.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.selikoff.net/2020/08/26/dont-panic-oracle-announces-new-java-ocp-11-exam/comment-page-2/#comment-324243">Mahdi</a>.</p>
<p>@Mahdi: No. We are not updating the Java 11 book. The Java 17 book covers this.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Mahdi Mohammadnezhad		</title>
		<link>https://www.selikoff.net/2020/08/26/dont-panic-oracle-announces-new-java-ocp-11-exam/comment-page-2/#comment-325035</link>

		<dc:creator><![CDATA[Mahdi Mohammadnezhad]]></dc:creator>
		<pubDate>Mon, 20 Mar 2023 11:46:56 +0000</pubDate>
		<guid isPermaLink="false">https://www.selikoff.net/?p=14592#comment-325035</guid>

					<description><![CDATA[Hi,

following my previous messages, here is another topic that is not covered by the book. :Consider the following code:

    public static void findFiles() throws Exception{
        Path dir = Paths.get(&quot;c:\\temp&quot;);
        
        //INSERT CODE HERE
           for(Path p : ds){
              System.out.println(p);
           }
        }
        catch(Exception e){
            e.printStackTrace();
        }
    }    

try{ DirectoryStream ds = Files.newDirectoryStream(dir, &quot;*.[gif,jpeg]&quot;);
try{ DirectoryStream ds = Files.newDirectoryStream(dir, &quot;*.{gif,jpeg}&quot;);
try{ DirectoryStream ds = Files.newDirectoryStream(dir, &quot;*.gif,*.jpeg&quot;);
try{ DirectoryStream ds = Files.newDirectoryStream(dir, &quot;gif,jpeg&quot;);

DirectoryStream is not covered in the book!
Can you please just inform us if you are working on any updated version of the book for OCP 11?

Best Regards,
Mahdi]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>following my previous messages, here is another topic that is not covered by the book. :Consider the following code:</p>
<p>    public static void findFiles() throws Exception{<br />
        Path dir = Paths.get(&#8220;c:\\temp&#8221;);</p>
<p>        //INSERT CODE HERE<br />
           for(Path p : ds){<br />
              System.out.println(p);<br />
           }<br />
        }<br />
        catch(Exception e){<br />
            e.printStackTrace();<br />
        }<br />
    }    </p>
<p>try{ DirectoryStream ds = Files.newDirectoryStream(dir, &#8220;*.[gif,jpeg]&#8221;);<br />
try{ DirectoryStream ds = Files.newDirectoryStream(dir, &#8220;*.{gif,jpeg}&#8221;);<br />
try{ DirectoryStream ds = Files.newDirectoryStream(dir, &#8220;*.gif,*.jpeg&#8221;);<br />
try{ DirectoryStream ds = Files.newDirectoryStream(dir, &#8220;gif,jpeg&#8221;);</p>
<p>DirectoryStream is not covered in the book!<br />
Can you please just inform us if you are working on any updated version of the book for OCP 11?</p>
<p>Best Regards,<br />
Mahdi</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Mahdi		</title>
		<link>https://www.selikoff.net/2020/08/26/dont-panic-oracle-announces-new-java-ocp-11-exam/comment-page-2/#comment-324243</link>

		<dc:creator><![CDATA[Mahdi]]></dc:creator>
		<pubDate>Sat, 11 Mar 2023 15:03:33 +0000</pubDate>
		<guid isPermaLink="false">https://www.selikoff.net/?p=14592#comment-324243</guid>

					<description><![CDATA[Hi Jeanne,
I also find in mock exam that is mentioned about Deque and some other methods like compute, computeIfAbsense ...
I am wondering if you have any plan to update the 819 book? 
I am afraid to take the test, then face to some questions that the book is not covered :/]]></description>
			<content:encoded><![CDATA[<p>Hi Jeanne,<br />
I also find in mock exam that is mentioned about Deque and some other methods like compute, computeIfAbsense &#8230;<br />
I am wondering if you have any plan to update the 819 book?<br />
I am afraid to take the test, then face to some questions that the book is not covered :/</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jeanne Boyarsky		</title>
		<link>https://www.selikoff.net/2020/08/26/dont-panic-oracle-announces-new-java-ocp-11-exam/comment-page-2/#comment-317760</link>

		<dc:creator><![CDATA[Jeanne Boyarsky]]></dc:creator>
		<pubDate>Mon, 16 Jan 2023 01:49:01 +0000</pubDate>
		<guid isPermaLink="false">https://www.selikoff.net/?p=14592#comment-317760</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.selikoff.net/2020/08/26/dont-panic-oracle-announces-new-java-ocp-11-exam/comment-page-2/#comment-317420&quot;&gt;mahdi&lt;/a&gt;.

Mahdi: Can you link to something that shows it is a CallableStatement concept? Vs a regular JDBC question that just happens to use callable statement?]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.selikoff.net/2020/08/26/dont-panic-oracle-announces-new-java-ocp-11-exam/comment-page-2/#comment-317420">mahdi</a>.</p>
<p>Mahdi: Can you link to something that shows it is a CallableStatement concept? Vs a regular JDBC question that just happens to use callable statement?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: mahdi		</title>
		<link>https://www.selikoff.net/2020/08/26/dont-panic-oracle-announces-new-java-ocp-11-exam/comment-page-2/#comment-317420</link>

		<dc:creator><![CDATA[mahdi]]></dc:creator>
		<pubDate>Fri, 13 Jan 2023 16:53:14 +0000</pubDate>
		<guid isPermaLink="false">https://www.selikoff.net/?p=14592#comment-317420</guid>

					<description><![CDATA[Hi,
It seems callablastarement is part of ocp 11.
I found in some websites that people complained about that.
can you please confirm and update this page?]]></description>
			<content:encoded><![CDATA[<p>Hi,<br />
It seems callablastarement is part of ocp 11.<br />
I found in some websites that people complained about that.<br />
can you please confirm and update this page?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jeanne Boyarsky		</title>
		<link>https://www.selikoff.net/2020/08/26/dont-panic-oracle-announces-new-java-ocp-11-exam/comment-page-2/#comment-279074</link>

		<dc:creator><![CDATA[Jeanne Boyarsky]]></dc:creator>
		<pubDate>Mon, 11 Oct 2021 20:59:03 +0000</pubDate>
		<guid isPermaLink="false">https://www.selikoff.net/?p=14592#comment-279074</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.selikoff.net/2020/08/26/dont-panic-oracle-announces-new-java-ocp-11-exam/comment-page-2/#comment-279054&quot;&gt;Mary&lt;/a&gt;.

@Mary We don&#039;t work for Oracle and therefore don&#039;t have any special information. The last time Oracle announced an exam retirement was the 817 (Java 11 upgrade exam) and they gave 2.5 months notice.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.selikoff.net/2020/08/26/dont-panic-oracle-announces-new-java-ocp-11-exam/comment-page-2/#comment-279054">Mary</a>.</p>
<p>@Mary We don&#8217;t work for Oracle and therefore don&#8217;t have any special information. The last time Oracle announced an exam retirement was the 817 (Java 11 upgrade exam) and they gave 2.5 months notice.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Mary		</title>
		<link>https://www.selikoff.net/2020/08/26/dont-panic-oracle-announces-new-java-ocp-11-exam/comment-page-2/#comment-279054</link>

		<dc:creator><![CDATA[Mary]]></dc:creator>
		<pubDate>Mon, 11 Oct 2021 08:48:51 +0000</pubDate>
		<guid isPermaLink="false">https://www.selikoff.net/?p=14592#comment-279054</guid>

					<description><![CDATA[Until when will the IZO-808 exam be available? Is there any intention to decommission it within 3 months?]]></description>
			<content:encoded><![CDATA[<p>Until when will the IZO-808 exam be available? Is there any intention to decommission it within 3 months?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jeanne Boyarsky		</title>
		<link>https://www.selikoff.net/2020/08/26/dont-panic-oracle-announces-new-java-ocp-11-exam/comment-page-2/#comment-277820</link>

		<dc:creator><![CDATA[Jeanne Boyarsky]]></dc:creator>
		<pubDate>Sat, 25 Sep 2021 02:17:01 +0000</pubDate>
		<guid isPermaLink="false">https://www.selikoff.net/?p=14592#comment-277820</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.selikoff.net/2020/08/26/dont-panic-oracle-announces-new-java-ocp-11-exam/comment-page-2/#comment-277661&quot;&gt;VINEET KUMAR&lt;/a&gt;.

@Vineet: You can take the 819 directly]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.selikoff.net/2020/08/26/dont-panic-oracle-announces-new-java-ocp-11-exam/comment-page-2/#comment-277661">VINEET KUMAR</a>.</p>
<p>@Vineet: You can take the 819 directly</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: VINEET KUMAR		</title>
		<link>https://www.selikoff.net/2020/08/26/dont-panic-oracle-announces-new-java-ocp-11-exam/comment-page-2/#comment-277661</link>

		<dc:creator><![CDATA[VINEET KUMAR]]></dc:creator>
		<pubDate>Wed, 22 Sep 2021 16:27:35 +0000</pubDate>
		<guid isPermaLink="false">https://www.selikoff.net/?p=14592#comment-277661</guid>

					<description><![CDATA[Is there any prerequisite( 808/809) to appear for  819 exam or we can give 819 directly]]></description>
			<content:encoded><![CDATA[<p>Is there any prerequisite( 808/809) to appear for  819 exam or we can give 819 directly</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
