<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
    <channel>
        <title>JavaRanch Programmer Certification (SCJP)</title>
        <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=forum&amp;f=24</link>
        <description>A Friendly Place for Java Greenhorns</description>
        <image>
            <url>http://saloon.javaranch.com/ubb/moosefly.gif</url>
            <title>JavaRanch Big Moose Saloon</title>
            <link>http://saloon.javaranch.com/</link>
        </image>
        <language>en-us</language>
        <generator>JavaRanch RSS</generator>
        <copyright>Copyright 2007 Paul Wheaton. All Rights Reserved.</copyright>
        <item uniqueID="24-044859">
            <title>Integer int question</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044859</link>
            <description>source:http://enigma.vm.bytemark.co.uk/webstart.html &lt;br /&gt; John Meyers's SCJP 5 mock exam:question 7&lt;br /&gt; &lt;br /&gt;&lt;blockquote&gt;code:&lt;hr&gt;&lt;pre&gt;&lt;br /&gt;class test {&lt;br /&gt; public static void main(String[] args) {&lt;br /&gt; test inst_test = new test();&lt;br /&gt; int i1 = 2000;&lt;br /&gt; int i2 = 2000;&lt;br /&gt; int i3 = 2;&lt;br /&gt; int i4 = 2;&lt;br /&gt; Integer Ithree = new Integer(2); // 1&lt;br /&gt; Integer Ifour = new Integer(2); // 2&lt;br /&gt; System.out.println( Ithree == Ifour );&lt;br /&gt; inst_test.method( i3 , i4 );&lt;br /&gt; inst_test.method( i1 , i2 );&lt;br /&gt; }&lt;br /&gt; public void method( Integer i , Integer eye ) {&lt;br /&gt; System.out.println(i == eye );&lt;br /&gt; }&lt;br /&gt;}&lt;br /&gt; &lt;br /&gt;&lt;/pre&gt;&lt;hr&gt;&lt;/blockquote&gt;&lt;br /&gt;Answe...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044859</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044859Gary Kevin</comments>
            <author/>
            <pubDate>Fri, 9 May 2008 05:50:58 MDT</pubDate>
        </item>
        <item uniqueID="24-044858">
            <title>Regd Multiple choice question pattern</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044858</link>
            <description>Hi&lt;br /&gt;i have a doubt rerd multiple choice question type for SCJP1.5 exam&lt;br /&gt;is it mentioned clearly in each question how any answers are correct or&lt;br /&gt;just written choose all that apply (like k&amp;B style) please help</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044858</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044858vighnesh thakur</comments>
            <author/>
            <pubDate>Fri, 9 May 2008 04:50:59 MDT</pubDate>
        </item>
        <item uniqueID="24-044857">
            <title>Explaint the ouput...</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044857</link>
            <description>public class T6 &lt;br /&gt;{&lt;br /&gt; public static void main(String[] args) &lt;br /&gt; {&lt;br /&gt; long intBig = Integer.MAX_VALUE + 1;&lt;br /&gt; long longBig = Integer.MAX_VALUE + 1L;&lt;br /&gt; if(intBig==longBig){&lt;br /&gt; System.out.println("True");&lt;br /&gt; }else{&lt;br /&gt; System.out.println("False");&lt;br /&gt; } &lt;br /&gt; }&lt;br /&gt; } &lt;br /&gt; &lt;br /&gt;It's output is False. how the output is coming. </description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044857</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044857Tarun Kumar</comments>
            <author/>
            <pubDate>Fri, 9 May 2008 04:50:58 MDT</pubDate>
        </item>
        <item uniqueID="24-044856">
            <title>Class finalization</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044856</link>
            <description>&lt;blockquote&gt;code:&lt;hr&gt;&lt;pre&gt;&lt;br /&gt;src:http://technoheads.blogspot.com/&lt;br /&gt; &lt;br /&gt;Class finalization can be done by implementing the following method:static void classFinalize() throws Throwable;True Or False?&lt;br /&gt;(1)True&lt;br /&gt;(2)False&lt;br /&gt;Answer : 2&lt;br /&gt;Explanation : PREVIOUSLY: If a class declares a class method classFinalize that takes no arguments and returns no result: static void classFinalize() throws Throwable { . . . } then this method will be invoked before the class is unloaded . Like thefinalize method for objects, this method will be automatically invoked only once. This method may optionally be declared private, protected, or public. NOW: Class finalization has been removed from the Java language. Thefunctionality of JLS 12....</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044856</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044856Vidya Singh</comments>
            <author/>
            <pubDate>Fri, 9 May 2008 01:50:57 MDT</pubDate>
        </item>
        <item uniqueID="24-044855">
            <title>Sylabus for SCJP 1.6</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044855</link>
            <description>Hi,&lt;br /&gt; &lt;br /&gt;I am preparing for SCJP 1.6, but have the book Khalid Mughal 1.4, so going through the topics like Collection, Threading, Exception Handeling, Garbage collection of 1.4 currently. I want to know that what topics are added so far(from scjp 1.4) in 1.6 exam and what topics are excluded. Can somebody please help so that i can arrange those topics from somewhere?</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044855</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044855Sandeep Mukherji</comments>
            <author/>
            <pubDate>Fri, 9 May 2008 01:16:57 MDT</pubDate>
        </item>
        <item uniqueID="24-044854">
            <title>abstract interface</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044854</link>
            <description>I found that it is legal to declare a interface as abstract.&lt;br /&gt;Is there any advantage in declaring a interface as abstract. We all know that all method in interface are implicitly abstract. will this declaration make any difference in the interface?</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044854</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044854Thirugnanam Saravanan</comments>
            <author/>
            <pubDate>Fri, 9 May 2008 00:54:57 MDT</pubDate>
        </item>
        <item uniqueID="24-044853">
            <title>Chapter 6 Self Test Q1</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044853</link>
            <description>import java.util.regex.*;&lt;br /&gt;class Regex2&lt;br /&gt; {&lt;br /&gt; public static void main(String[] args) &lt;br /&gt; {&lt;br /&gt; Pattern p = Pattern.compile(args[0]);&lt;br /&gt; Matcher m = p.matcher(args[1]);&lt;br /&gt; boolean b = false;&lt;br /&gt; while(b = m.find()) &lt;br /&gt; {&lt;br /&gt; System.out.print(m.start() + m.group());&lt;br /&gt; }&lt;br /&gt; }&lt;br /&gt; }&lt;br /&gt;And the command line:&lt;br /&gt;java Regex2 "\d*" ab34ef&lt;br /&gt; &lt;br /&gt;What is the result?&lt;br /&gt;A. 234&lt;br /&gt;B. 334&lt;br /&gt;C. 2334&lt;br /&gt;D. 0123456&lt;br /&gt;E. 01234456&lt;br /&gt;F. 12334567&lt;br /&gt;G. Compilation fails.&lt;br /&gt; &lt;br /&gt;Answer is E but i am not getting this please explain me.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044853</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044853sapana jain</comments>
            <author/>
            <pubDate>Fri, 9 May 2008 00:08:57 MDT</pubDate>
        </item>
        <item uniqueID="24-044852">
            <title>please advice.</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044852</link>
            <description>I am looking forward to appear for SCJP 1.5 in a month or so. I am done with Head First Java by Kathy and Bert. It has been a smooth journey till now( thanks to Kathy and Bert!). What should be the next step in my preparation? I see there is a SCJP Study Guide by Kathy and Berts avalaible and also there is an Exam Simulator from Whizlabs. What would be a good choice? I am a beginner.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044852</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044852jaspreet atwal</comments>
            <author/>
            <pubDate>Thu, 8 May 2008 17:16:56 MDT</pubDate>
        </item>
        <item uniqueID="24-044851">
            <title>Question</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044851</link>
            <description>&lt;blockquote&gt;code:&lt;hr&gt;&lt;pre&gt;&lt;br /&gt;src:&lt;br /&gt;http://technoheads.blogspot.com/ (http://technoheads.blogspot.com/)&lt;br /&gt;class test&lt;br /&gt;{&lt;br /&gt;public static void main(String[] args) &lt;br /&gt;{&lt;br /&gt;test inst_test = new test();&lt;br /&gt;int i1 = 2000;&lt;br /&gt;int i2 = 2000;&lt;br /&gt;int i3 = 2;&lt;br /&gt;int i4 = 2;&lt;br /&gt;Integer Ithree = new Integer(2); // 1&lt;br /&gt;Integer Ifour = new Integer(2); // 2&lt;br /&gt;System.out.println( Ithree == Ifour );&lt;br /&gt;inst_test.method( i3 , i4 );&lt;br /&gt;inst_test.method( i1 , i2 );&lt;br /&gt; &lt;br /&gt;}&lt;br /&gt;public void method( Integer i , Integer eye )&lt;br /&gt;{&lt;br /&gt;System.out.println(i == eye );&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt; &lt;br /&gt;a. true false true&lt;br /&gt;b. false true false&lt;br /&gt;c. false false false&lt;br /&gt;d. true true false&lt;br /&gt;e. Compile error&lt;br /&gt; &lt;br ...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044851</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044851Vidya Singh</comments>
            <author/>
            <pubDate>Thu, 8 May 2008 14:54:56 MDT</pubDate>
        </item>
        <item uniqueID="24-044850">
            <title>Getting SCJP...</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044850</link>
            <description>I want to be a web developer but most all my experience is in systems integration and administration. That said most employers overlook my resume when filling a development position.&lt;br /&gt; &lt;br /&gt;Will an SCJP help to change the direction of my career? Once I achieve the SCJP I would move on to the SCJD as well. At least that is my current thinking. What does everyone think?&lt;br /&gt; &lt;br /&gt;Higgledy</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044850</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044850Higgledy Smith</comments>
            <author/>
            <pubDate>Thu, 8 May 2008 11:08:55 MDT</pubDate>
        </item>
        <item uniqueID="24-044849">
            <title>final objects in the enhanced loop</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044849</link>
            <description>Hi,&lt;br /&gt; &lt;br /&gt;I was wondering why can we use the word "final" before the object in the enhanced loop? I mean something like:&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;for(final someObject : someArray)&lt;br /&gt;...&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;We will use someObject to go through the whole array so we will definitely change this reference. Why the final word is allowed here?</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044849</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044849Ismael Upright</comments>
            <author/>
            <pubDate>Thu, 8 May 2008 10:34:55 MDT</pubDate>
        </item>
        <item uniqueID="24-044848">
            <title>StackOverflowException</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044848</link>
            <description>Consider the following method from jqplus6:&lt;br /&gt; &lt;br /&gt; &lt;blockquote&gt;quote:&lt;hr&gt;&lt;br /&gt;int factorial(int n)&lt;br /&gt;{&lt;br /&gt; if(n==1)&lt;br /&gt; {&lt;br /&gt; return 1;&lt;br /&gt; }&lt;br /&gt; else&lt;br /&gt; {&lt;br /&gt; return n*factorial(n-1);&lt;br /&gt; }&lt;br /&gt;}&lt;br /&gt;&lt;hr&gt;&lt;/blockquote&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;According to the answer given in the evaluation this method, if called with a very big integer, will throw StackOverflowException. I understand the concept that stands beyond that but I was wondering if we will always get the StackOverflowException?&lt;br /&gt; &lt;br /&gt;I mean does the JVM has some fixed amount of memory reserved or it is dependant of the system? Can we theoretically, having lots of memory and operating system ready to give it to the JVM, finish to perform thi...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044848</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044848Ismael Upright</comments>
            <author/>
            <pubDate>Thu, 8 May 2008 10:18:56 MDT</pubDate>
        </item>
        <item uniqueID="24-044847">
            <title>short and Integer</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044847</link>
            <description>Consider the following code:&lt;br /&gt; &lt;br /&gt; &lt;blockquote&gt;quote:&lt;hr&gt;&lt;br /&gt;public class TestClass&lt;br /&gt;{&lt;br /&gt; public static void main(String[] args)&lt;br /&gt; {&lt;br /&gt; short s = 9;&lt;br /&gt; Integer i = 9;&lt;br /&gt; System.out.println( s == i );&lt;br /&gt; }&lt;br /&gt;}&lt;br /&gt;&lt;hr&gt;&lt;/blockquote&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;This actually compiles and prints "true".&lt;br /&gt;For me it seems like code that should not compile..&lt;br /&gt; &lt;br /&gt;What actually happend there?</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044847</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044847Ismael Upright</comments>
            <author/>
            <pubDate>Thu, 8 May 2008 09:54:55 MDT</pubDate>
        </item>
        <item uniqueID="24-044846">
            <title>Integer.MIN_VALUE</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044846</link>
            <description>Consider the following code from jqplus6:&lt;br /&gt; &lt;br /&gt; &lt;blockquote&gt;quote:&lt;hr&gt;&lt;br /&gt;public class TestClass&lt;br /&gt;{&lt;br /&gt; public static void main(String[] args) throws Exception&lt;br /&gt; {&lt;br /&gt; int a = Integer.MIN_VALUE;&lt;br /&gt; int b = -a;&lt;br /&gt; System.out.println( a+ " "+b);&lt;br /&gt; }&lt;br /&gt;}&lt;br /&gt;&lt;hr&gt;&lt;/blockquote&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;It will print two same negative numbers.&lt;br /&gt; &lt;br /&gt;Why????</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044846</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044846Ismael Upright</comments>
            <author/>
            <pubDate>Thu, 8 May 2008 09:32:55 MDT</pubDate>
        </item>
        <item uniqueID="24-044845">
            <title>Java Language Specification for Java 6</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044845</link>
            <description>Hi,&lt;br /&gt; &lt;br /&gt;I downloaded JLS Third Edition but I'm not sure if it is up to date for Java 6?&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Is there any difference between Java 5 and Java 6 in the language itself (not counting the libraries)?</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044845</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044845Ismael Upright</comments>
            <author/>
            <pubDate>Thu, 8 May 2008 09:26:55 MDT</pubDate>
        </item>
        <item uniqueID="24-044844">
            <title>Serialization is not for Statics... Why?? </title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044844</link>
            <description>Hi all&lt;br /&gt;Can anyone explain me in detail why serialization cannot be applied to static variables. I have gone through K&amp;B book but couldn't understand... Please help !&lt;br /&gt; &lt;br /&gt;Thanks</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044844</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044844Swapna Gouri Kalanidhi</comments>
            <author/>
            <pubDate>Thu, 8 May 2008 08:54:55 MDT</pubDate>
        </item>
        <item uniqueID="24-044843">
            <title>Re take option</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044843</link>
            <description>Hi there, I've got one voucher for the exam with retake option, in case I failed it how long would I have to re take it?.. is there any standard date?... or I would be schedule it within several months?... thanks.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044843</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044843Serch Hdez</comments>
            <author/>
            <pubDate>Thu, 8 May 2008 06:54:55 MDT</pubDate>
        </item>
        <item uniqueID="24-044842">
            <title>private constructor in abstract classes</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044842</link>
            <description>I tried to create private constructor in abstract classes.&lt;br /&gt;It is allowing.&lt;br /&gt; &lt;br /&gt;What is the use of private condtructors in absract claases?</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044842</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044842minal silimkar</comments>
            <author/>
            <pubDate>Thu, 8 May 2008 03:04:55 MDT</pubDate>
        </item>
        <item uniqueID="24-044841">
            <title>HELP ME!</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044841</link>
            <description>Hi &lt;br /&gt; I have planned to write SCJP 1.5 this month end..i dont have much time to prepare as i'm working in a s/w concern... so, how can i prepare ? do we have any website for faq for SCJP?please do help me </description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044841</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044841Radhaa Murali</comments>
            <author/>
            <pubDate>Thu, 8 May 2008 02:28:54 MDT</pubDate>
        </item>
        <item uniqueID="24-044840">
            <title>Garbage Collection</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044840</link>
            <description>&lt;blockquote&gt;code:&lt;hr&gt;&lt;pre&gt;&lt;br /&gt;Src:http://devesh2k1.googlepages.com/home&lt;br /&gt; &lt;br /&gt;How many objects will be eligible for GC just after the method returns?&lt;br /&gt;public void compute(Object p)&lt;br /&gt;{&lt;br /&gt; Object a = new Object();&lt;br /&gt; int x = 100;&lt;br /&gt; String str = "abc";&lt;br /&gt;}&lt;br /&gt;Answer: 1&lt;br /&gt;Explanation: Objects passed to the method are never garbage collected in (or right after) that method. So p cannot be GCed. x is not an object. "abc" is a string literal which goes to the string pool and is not GCed. So, only a is eligible for GC.&lt;br /&gt;-----------&lt;br /&gt; &lt;br /&gt;what about the String. Str is also garbage collected, so answer should be 2.&lt;br /&gt;&lt;/pre&gt;&lt;hr&gt;&lt;/blockquote&gt;</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044840</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044840Vidya Singh</comments>
            <author/>
            <pubDate>Thu, 8 May 2008 00:32:54 MDT</pubDate>
        </item>
        <item uniqueID="24-044839">
            <title>operators</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044839</link>
            <description>I hava problem in following&lt;br /&gt; &lt;br /&gt;class A{&lt;br /&gt; public static void main(String args[]){&lt;br /&gt; byte b=-1,c,d;&lt;br /&gt; c=(byte)(b&amp;gt;&amp;gt;&amp;gt;1);&lt;br /&gt; d=(byte)(b&amp;gt;&amp;gt;&amp;gt;25);&lt;br /&gt; System.out.print(c+","+d);&lt;br /&gt; }&lt;br /&gt;}&lt;br /&gt;according to my knowlage that result is 127,127&lt;br /&gt;but actually printed -1,127 &lt;br /&gt;would you slove this problem?</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044839</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044839chathuranga senevirathne</comments>
            <author/>
            <pubDate>Wed, 7 May 2008 22:42:54 MDT</pubDate>
        </item>
        <item uniqueID="24-044838">
            <title>Help</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044838</link>
            <description>Hi everyone, I am going to take SCJP5.0 exam on 24th this month, please help me by providing mock exam and dump materials. Thank you to all.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044838</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044838Rajbabu OPS</comments>
            <author/>
            <pubDate>Wed, 7 May 2008 19:54:54 MDT</pubDate>
        </item>
        <item uniqueID="24-044837">
            <title>Coupling question</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044837</link>
            <description>Hi there, I have problems understanding the coupling topic expectations for the exam (SCJP 1.5), is there any good examples that could illustrate this concept and what is the exam expecting us to know?, thanks in advance.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044837</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044837Serch Hdez</comments>
            <author/>
            <pubDate>Wed, 7 May 2008 11:46:53 MDT</pubDate>
        </item>
        <item uniqueID="24-044836">
            <title>volatile keyword</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044836</link>
            <description>Can anyone the practical usage of 'volatile' keyword comparing it with 'synchronized' keyword with an example?</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044836</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044836Ram Manoj</comments>
            <author/>
            <pubDate>Wed, 7 May 2008 07:42:52 MDT</pubDate>
        </item>
        <item uniqueID="24-044835">
            <title>15 min survey in the certification exam</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044835</link>
            <description>Hi there, I have been told that when you first take the exam you have to ask a survey about how good you are in the different topics on the exam, my question is, does the exam get harder the more you answer you're good on the topics?.. thanks.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044835</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044835Serch Hdez</comments>
            <author/>
            <pubDate>Wed, 7 May 2008 07:32:52 MDT</pubDate>
        </item>
        <item uniqueID="24-044834">
            <title>Project</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044834</link>
            <description>Hello,&lt;br /&gt; &lt;br /&gt;I'm preparing to take the SCJP and i read some books about it. But what i really lack is some experience with the language. So, what i'm asking for is... can you guys me an idea about a project (something similar to SCJD i think) so i can work on it? Thanks...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044834</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044834Nick Potter</comments>
            <author/>
            <pubDate>Wed, 7 May 2008 07:00:52 MDT</pubDate>
        </item>
        <item uniqueID="24-044833">
            <title>reg Questions for sun's scjp exam </title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044833</link>
            <description>I mean to ask once they prepare a set Questions for the scjp exam in the database.How often they change the Questions in the database.Because each individual should be tested on the same level of Questions.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044833</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044833premchand chand</comments>
            <author/>
            <pubDate>Wed, 7 May 2008 03:08:52 MDT</pubDate>
        </item>
        <item uniqueID="24-044832">
            <title>plz help me</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044832</link>
            <description>I want to give scjp1.6&lt;br /&gt;but i don't have mock exam....can anybody tell me which is best or give me sites where i buy it plzzzzzzzzzzz</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044832</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044832saloni xxxx</comments>
            <author/>
            <pubDate>Wed, 7 May 2008 02:52:52 MDT</pubDate>
        </item>
        <item uniqueID="24-044831">
            <title>Inner Classes and GC</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044831</link>
            <description>Hello folks,&lt;br /&gt;i have a short question about Inner Classes and GC.&lt;br /&gt; &lt;br /&gt;Given:&lt;br /&gt; &lt;br /&gt;&lt;blockquote&gt;code:&lt;hr&gt;&lt;pre&gt;MyOuter.MyInner inner = new MyOuter().new MyInner();&lt;br /&gt;inner = null;&lt;/pre&gt;&lt;hr&gt;&lt;/blockquote&gt;&lt;br /&gt; &lt;br /&gt;Are 2 objects eligable for gc after setting the reference variable to null or is there something special? &lt;br /&gt; &lt;br /&gt;Thanks,&lt;br /&gt;Frank Hinkel</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044831</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044831Frank Hinkel</comments>
            <author/>
            <pubDate>Wed, 7 May 2008 02:22:51 MDT</pubDate>
        </item>
        <item uniqueID="24-044830">
            <title>Not yet received SCJP 5 certificate from past 6 months</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044830</link>
            <description>Hi ranchers,&lt;br /&gt; &lt;br /&gt;I have taken SCJP 5 exam on Nov 17th 2007 and I have not yet received the certificate from Sun. I have registered in http://www.certmanager.net/sun (http://www.certmanager.net/sun) and I could see all my certification details there. I have mailed to the following email addresses many times.&lt;br /&gt;1. &lt;b&gt;Sun Certification Support &amp;lt;certification@educationservicesgroup.com&amp;gt;&lt;/b&gt;&lt;br /&gt;2. &lt;b&gt;who2contact@sun.com&lt;/b&gt;&lt;br /&gt;3. &lt;b&gt;fulfillment@prometric.com&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;I got reply from &lt;br /&gt;&lt;b&gt;Sun Certification Support&amp;lt;certification@educationservicesgroup.com&amp;gt;&lt;/b&gt; 2 times once in January and once again in March saying that it will be resent within 4 weeks. But I have not received it. My address details are also c...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044830</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044830Madhuri Sowmya</comments>
            <author/>
            <pubDate>Wed, 7 May 2008 01:32:51 MDT</pubDate>
        </item>
        <item uniqueID="24-044829">
            <title>Object creation for Integer class</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044829</link>
            <description>1. Integer i1=new Integer(127);&lt;br /&gt;2. Integer i2=new Integer(127);&lt;br /&gt; &lt;br /&gt;Here only one object is being created. If the parameter value is greater 127 it creates two objects though the values passed are same. Why it is so?</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044829</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044829Satya Baswa</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 23:54:51 MDT</pubDate>
        </item>
        <item uniqueID="24-044828">
            <title>Assignments</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044828</link>
            <description>1. final int i=127;&lt;br /&gt;2. byte b=i;&lt;br /&gt; &lt;br /&gt;This piece of code works...&lt;br /&gt; &lt;br /&gt;1. final int i;&lt;br /&gt;2. i=127;&lt;br /&gt;3. byte b=i;&lt;br /&gt; &lt;br /&gt;This piece of code is not working.&lt;br /&gt; &lt;br /&gt;What is the difference in the above two pieces of code?</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044828</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044828Satya Baswa</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 23:50:51 MDT</pubDate>
        </item>
        <item uniqueID="24-044827">
            <title>FINAL VARIABLE DECLARATION</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044827</link>
            <description>1. final int i=127;&lt;br /&gt;2. final int i;&lt;br /&gt; i=127;&lt;br /&gt; &lt;br /&gt;What is the difference in the two decalrations?</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044827</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044827Satya Baswa</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 23:44:51 MDT</pubDate>
        </item>
        <item uniqueID="24-044826">
            <title>What happens when we print null character 'u0000' ?</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044826</link>
            <description>HI&lt;br /&gt;I am finding it strange when I am trying to print default value of char type.&lt;br /&gt; &lt;br /&gt;public class AClass {&lt;br /&gt; &lt;br /&gt; &lt;br /&gt; public static void main(String[] args) {&lt;br /&gt; char c='\u0000';&lt;br /&gt; System.out.println("c is "+c);&lt;br /&gt;&lt;b&gt;\\IT is working like I have written System.exit(0) here&lt;/b&gt;&lt;br /&gt; System.out.println("after print ");&lt;br /&gt; &lt;br /&gt; }&lt;br /&gt;}</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044826</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044826sachin verma</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 17:16:50 MDT</pubDate>
        </item>
        <item uniqueID="24-044824">
            <title>Casting with Arrays that hold objects references</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044824</link>
            <description>Hi,&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;I'm have this main method:&lt;br /&gt; &lt;br /&gt;public static void main(String[] args) {&lt;br /&gt;&lt;br /&gt;Object[] o1 ={"xxxxx","yyyyy",};&lt;br /&gt;Object[] o2=new String[]{"xxxxx","yyyyy",};&lt;br /&gt;&lt;br /&gt;String[] s2=(String[])o2; //run fine&lt;br /&gt;String[] s1=(String[])o1; //throws ClassCastException&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;It's code compile fine but throws ClassCastException. &lt;br /&gt; &lt;br /&gt;Why? What's the difference between objects o1 and o2?&lt;br /&gt; &lt;br /&gt;Thanks!!!!!</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044824</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044824Luis Torres</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 11:54:50 MDT</pubDate>
        </item>
        <item uniqueID="24-044823">
            <title>I didnt recieve my certification account until now!!!</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044823</link>
            <description>hello mates,&lt;br /&gt; &lt;br /&gt;i've posted here before for the same subject, but this time it took a longer time, why Sun didnt send to me the certification database account until now???? you told me to be patient but until when??? its been a week and i have no idea what is happening, a friend of mine took the SCJP and recieved his account information after 1 or 2 days, please i need you advice. </description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044823</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044823Hussam Odeh</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 11:20:50 MDT</pubDate>
        </item>
        <item uniqueID="24-044822">
            <title>Serialization</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044822</link>
            <description>Hi guys,&lt;br /&gt; &lt;br /&gt;Given:&lt;br /&gt; &lt;br /&gt;&lt;blockquote&gt;code:&lt;hr&gt;&lt;pre&gt;class Animal implements Serializable()&lt;br /&gt;{ private Eyes eyes;&lt;br /&gt; private Ears ears;&lt;br /&gt; ...&lt;br /&gt;}&lt;/pre&gt;&lt;hr&gt;&lt;/blockquote&gt;&lt;br /&gt; &lt;br /&gt;&lt;blockquote&gt;code:&lt;hr&gt;&lt;pre&gt;class Dog extends Animal()&lt;br /&gt;{&lt;br /&gt; private Legs legs;&lt;br /&gt; ...&lt;br /&gt;}&lt;/pre&gt;&lt;hr&gt;&lt;/blockquote&gt;&lt;br /&gt; &lt;br /&gt;When I serialize a dog Object how many objects ars serialized?&lt;br /&gt;dog + legs + eyes + ears = 4 objects?&lt;br /&gt;is this right?&lt;br /&gt; &lt;br /&gt;Thank you&lt;br /&gt;Arsineh</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044822</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044822Arsineh Keshishian</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 11:14:50 MDT</pubDate>
        </item>
        <item uniqueID="24-044821">
            <title>Is SCJP 1.4 still alive?</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044821</link>
            <description>Hi,&lt;br /&gt; &lt;br /&gt;Just wanted to know, whether SCJP 1.4 is still continuing or it's no more now?&lt;br /&gt; &lt;br /&gt;If yes then please provide the link, as I was not able to find link on SUN's Offcial Site (http://www.sun.com).&lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;Thanks</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044821</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044821Ankur Sharma</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 08:50:49 MDT</pubDate>
        </item>
        <item uniqueID="24-044820">
            <title>Confused...</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044820</link>
            <description>I am Currently Preparing for SCJP and will complete it within 3 months.&lt;br /&gt;I have done BSC CompSci. I have no work Experience in the field of Software Development, So looking forward to step in Development field.&lt;br /&gt; &lt;br /&gt;I am very confused how do I go along with Java as we all know Java is moving at an tremendous Pace.In each new release there are loads of new features emerging out.New Techniques and Services are coming out every now and then.&lt;br /&gt; &lt;br /&gt;As a Novie in the world of Java, can any one suggest me the proper guide lines or path how do we stay back to back with Java.&lt;br /&gt; &lt;br /&gt;Also Do let me know, List all the services and technologies (Related to or Not Related to Java) one should know if he/she plans to go ahead with J...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044820</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044820Rinav Gangar</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 06:12:49 MDT</pubDate>
        </item>
        <item uniqueID="24-044819">
            <title>What is the difference between null and void?</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044819</link>
            <description>Anyone knows?&lt;br /&gt; &lt;br /&gt;I mean also the physical difference - like reserved space in the memory, consequences, what can we do with null that we cannot do with void and vice versa....</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044819</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044819Ismael Upright</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 04:42:49 MDT</pubDate>
        </item>
        <item uniqueID="24-044818">
            <title>SCJP Exam</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044818</link>
            <description>Hi,&lt;br /&gt; &lt;br /&gt;Which exam should I go for 5.0 or 6.0 and why? Please can anybody tell me what is the difference between 5.0 and 6.0?&lt;br /&gt; &lt;br /&gt;Thanks,&lt;br /&gt;Sukhjot</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044818</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044818Sukhjot Singh</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 04:12:49 MDT</pubDate>
        </item>
        <item uniqueID="24-044817">
            <title>Collection.toArray() method</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044817</link>
            <description>Hi.&lt;br /&gt; &lt;br /&gt;I have this code:&lt;br /&gt; &lt;br /&gt;public class Test3 {&lt;br /&gt; public static void main(String [] args) {&lt;br /&gt; LinkedList&amp;lt;String&amp;gt; list = new LinkedList&amp;lt;String&amp;gt;();&lt;br /&gt; list.add("one "); list.add("two "); list.add("three ");&lt;br /&gt; String [] sa = new String[3];&lt;br /&gt; sa = (String []) list.toArray(); // insert code here&lt;br /&gt; for(String s : sa)&lt;br /&gt; System.out.print(s);&lt;br /&gt; }&lt;br /&gt; }&lt;br /&gt; &lt;br /&gt;If I run this class I get a ClassCastException.&lt;br /&gt; &lt;br /&gt;Why?</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044817</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044817Luis Torres</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 03:20:49 MDT</pubDate>
        </item>
        <item uniqueID="24-044816">
            <title>garbage collection?</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044816</link>
            <description>&lt;blockquote&gt;code:&lt;hr&gt;&lt;pre&gt; &lt;br /&gt;public Object m(){//10&lt;br /&gt; Object o = new Float(3.14F);//11&lt;br /&gt; Object[] oa = new Object[1];//12&lt;br /&gt; oa[0] = 0;//13&lt;br /&gt; o = null;//14&lt;br /&gt; return oa[0];//15&lt;br /&gt;}&lt;br /&gt;when is the Float object,created in line 11,eligible for garbage collection?&lt;br /&gt;A Just after line 13&lt;br /&gt;B Just after line 14&lt;br /&gt;C Never in this method.&lt;br /&gt;D Just after line 15 (that is,at the mehod returns)&lt;br /&gt;Answer:B&lt;br /&gt;&lt;/pre&gt;&lt;hr&gt;&lt;/blockquote&gt;&lt;br /&gt; &lt;br /&gt;I thought the answer would be D,because oa[0] still refer to the Float Object after line 14,it's not eligible for garbage collection.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044816</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044816Gary Kevin</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 02:22:48 MDT</pubDate>
        </item>
        <item uniqueID="24-044815">
            <title>Garbage collection question</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044815</link>
            <description>Hello everyone.&lt;br /&gt; &lt;br /&gt;This is a question from Sun's Free Mock Test::&lt;br /&gt;--------&lt;br /&gt;Given:&lt;br /&gt;public class Test3 {&lt;br /&gt;static long story;&lt;br /&gt; &lt;br /&gt;public static void main(String[] args) {&lt;br /&gt;if (story == 0) {&lt;br /&gt;Long tale = 343L;&lt;br /&gt;story = go(tale);&lt;br /&gt;}&lt;br /&gt;// do stuff -- line 8&lt;br /&gt;System.out.print(story);&lt;br /&gt;}&lt;br /&gt; &lt;br /&gt;static long go(Long t) {&lt;br /&gt;return t++;&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;Which is true?&lt;br /&gt;--------&lt;br /&gt;and the correct answer is: At line 8, an object is eligible for garbage collection.&lt;br /&gt; &lt;br /&gt;but I not sure of this answer. &lt;br /&gt;Please, Can you help me?</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044815</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044815Luis Torres</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 02:00:48 MDT</pubDate>
        </item>
        <item uniqueID="24-044814">
            <title>Doubt with notify/ notifyAll method</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044814</link>
            <description>Hi,&lt;br /&gt;This code is from the K&amp;B,&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;code:&lt;hr&gt;&lt;pre&gt; class Reader extends Thread { &lt;br /&gt;Calculator c; &lt;br /&gt;public Reader(Calculator calc){&lt;br /&gt;c = calc; &lt;br /&gt;}&lt;br /&gt;public void run(){ &lt;br /&gt;synchronized(c){&lt;br /&gt;try{&lt;br /&gt;System.out.println("Waiting for calculation..."); &lt;br /&gt;c.wait(); &lt;br /&gt;}catch(InterruptedException e) {} &lt;br /&gt;System.out.println("Total is: " + c.total); &lt;br /&gt;} &lt;br /&gt;}&lt;br /&gt;public static void main(String [] args) { &lt;br /&gt;Calculator calculator = new Calculator(); &lt;br /&gt;new Reader(calculator).start(); &lt;br /&gt;new Reader(calculator).start(); &lt;br /&gt;new Reader(calculator).start(); &lt;br /&gt;calculator.start(); &lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;class Calculator extends Thread { &lt;br /&gt;int ...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044814</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044814kesava narayana</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 01:02:48 MDT</pubDate>
        </item>
        <item uniqueID="24-044813">
            <title>certification</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044813</link>
            <description>i am in india. Now within 2 months i have to write scjp, whether i have to prepare for scjp 310-055 or scjp 310-065</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044813</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044813minu kavitha</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 00:44:48 MDT</pubDate>
        </item>
        <item uniqueID="24-044812">
            <title>Thread question</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044812</link>
            <description>source: http://www.sun.com/training/certification/assessment/055.jsp (http://www.sun.com/training/certification/assessment/055.jsp)&lt;br /&gt;[CODE&lt;br /&gt;5. class Order implements Runnable {&lt;br /&gt;6. public void run() {&lt;br /&gt;7. try { Thread.sleep(2000); } catch (Exception e) { }&lt;br /&gt;8. System.out.print("in ");&lt;br /&gt;9. }&lt;br /&gt;10. public static void main(String [] args) {&lt;br /&gt;11. Thread t = new Thread(new Order());&lt;br /&gt;12. t.start();&lt;br /&gt;13. System.out.print("pre ");&lt;br /&gt;14. try { t.join(); } catch (Exception e) { }&lt;br /&gt;15. System.out.print("post ");&lt;br /&gt;16. } } [/CODE]&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Which two can result? (Choose two.)&lt;br /&gt; &lt;br /&gt;a)in pre&lt;br /&gt;b)pre in&lt;br /&gt;c)in post pre&lt;br /&gt;d)in pre post&lt;br /&gt;e)pre in...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044812</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044812sridhar row</comments>
            <author/>
            <pubDate>Mon, 5 May 2008 23:36:48 MDT</pubDate>
        </item>
        <item uniqueID="24-044811">
            <title>Scjp Logo Usage</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044811</link>
            <description>Hi all&lt;br /&gt; &lt;br /&gt;i have downloaded the sun logo for scjp,my query is where all can i use the logo.Can i use it in my resume?&lt;br /&gt; &lt;br /&gt;Thanks&lt;br /&gt;Umadas</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044811</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044811Umadas Ravindran</comments>
            <author/>
            <pubDate>Mon, 5 May 2008 22:44:48 MDT</pubDate>
        </item>
        <item uniqueID="24-044809">
            <title>static import and enums</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044809</link>
            <description>Hi Ranchers,&lt;br /&gt;I think highly of your time so if you find a minute, please, consider the following:&lt;br /&gt;In case we define an enum inside a class in one package and then would like to use it in another one, what is the proper way to import it: static import or "classic" import statement since I noticed they both work and allow to use the enum name without class qualification. Similar question applies to members which are static nested classes. What do you think is correct? Appreciate your involvement.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044809</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044809Paul Prusko</comments>
            <author/>
            <pubDate>Mon, 5 May 2008 11:18:47 MDT</pubDate>
        </item>
        <item uniqueID="24-044808">
            <title>Need Help!</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044808</link>
            <description>Hi Ranchers,&lt;br /&gt; &lt;br /&gt;I am having my SCJP 1.5 exam in the next week.&lt;br /&gt; &lt;br /&gt;I am really tensed whether i would be able to clear the exam or not?&lt;br /&gt; &lt;br /&gt;I have practiced Whilabs questions also.Is doing whizlabs helpful or not?&lt;br /&gt; &lt;br /&gt;Also, there are not many mock exams for 1.5.Most of them available are for 1.4 in Javaranch FAQ.&lt;br /&gt; &lt;br /&gt;I am not getting the confidence to face the exam.Someone please guide me.&lt;br /&gt; &lt;br /&gt;Hoping for a positive reply.&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;Jaimesh.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044808</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=24&amp;t=044808jammy ponkia</comments>
            <author/>
            <pubDate>Mon, 5 May 2008 11:14:47 MDT</pubDate>
        </item> 
    </channel>
</rss>
