Questions to indicate competency in Java - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T23:42:37Z http://stackoverflow.com/feeds/question/479112 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/479112/questions-to-indicate-competency-in-java 2 Questions to indicate competency in Java Robert 2009-01-26T08:26:51Z 2009-01-26T11:24:04Z <p>As a beginner in Java, I would like to know where I'm learning things (correctly), where I'm learning things incorrectly, and what I should learn next. I find I learn best by being given problems I can't immediately solve, and I need to do some research/learning to work out the best solution, then go onto the next problem. I then repeat the old questions once in a while until they have entered my long term memory.</p> <p>Questions on Stack Overflow are useful in this respect, however they are not ordered in terms of difficulty and many of them are about a specific implementation of some feature.</p> <p>Please reply with questions (and suitable answers) to this question that would be useful to any person trying to improve their knowledge and experience in Java. I'm sure that many Stack Overflow questions already posted would be suitable answers, in which case just reply with the question and the link to the original question. Also include the level of difficulty: low, medium, high (maybe include low-medium and medium-high in there as well).</p> http://stackoverflow.com/questions/479112/questions-to-indicate-competency-in-java/479120#479120 1 Answer by cletus for Questions to indicate competency in Java cletus 2009-01-26T08:35:35Z 2009-01-26T08:35:35Z <p>I like:</p> <p>What does this return?</p> <pre><code>private int foo() { try { return 1; } catch (Exception e) { return 2; } finally { return 3; } } </code></pre> <p>Answer: 3</p> http://stackoverflow.com/questions/479112/questions-to-indicate-competency-in-java/479121#479121 6 Answer by Fortyrunner for Questions to indicate competency in Java Fortyrunner 2009-01-26T08:35:47Z 2009-01-26T08:35:47Z <p>Buy a copy of Effective Java and read it from cover to cover.</p> <p>Read it regularly.</p> <p>Concentrate on things such as equals, hashcode, compareto methods.</p> <p>Learn the collections api thoroughly.</p> <p>I realise that this doesn't answer your questions directly but (IMHO) it is sound advice!</p> http://stackoverflow.com/questions/479112/questions-to-indicate-competency-in-java/479124#479124 2 Answer by cletus for Questions to indicate competency in Java cletus 2009-01-26T08:38:13Z 2009-01-26T08:38:13Z <p>Oh I also like:</p> <p>Imagine if you put this in a class:</p> <pre><code>public int hashCode() { return 1; } </code></pre> <p><strong>Questions:</strong></p> <ol> <li>Is this legal?</li> <li>What is the effect of putting these objects in a Map? Will that Map work?</li> <li>How will it affect performance?</li> </ol> <p><strong>Answers:</strong></p> <ol> <li>Yes, it doesn't violate the equals/hashCode contract, which states that if two objects are equal they must return the same hashCode();</li> <li>The Map will work;</li> <li>The performance will be O(n) and the Map will operate like an expensive List as everything will be stored in the same bucket.</li> </ol> http://stackoverflow.com/questions/479112/questions-to-indicate-competency-in-java/479130#479130 3 Answer by Nick Fortescue for Questions to indicate competency in Java Nick Fortescue 2009-01-26T08:40:17Z 2009-01-26T08:48:02Z <p>I don't know how much of a beginner you are and what other languages you know, but in my opinion if you don't really know the java.util package you are in trouble. So my questions would be things like:</p> <ol> <li>What are the major differences between LinkedList, ArrayList, Vector and arrays?</li> <li>When would you use an ArrayList and when a Set?</li> <li>What are the differences between HashMap and TreeMap and when would you use each of them?</li> </ol> <p>Answers:</p> <ol> <li>Arrays can't grow, so are fundamental building blocks. If you are writing your own data structures and you really need constant factor memory or CPU performance increases they could be useful. ArrayList and Vector are essentially the same except Vector is synchronized. You will nearly always be better using ArrayList, and if you want synchronisation think about it at a higher level. ArrayList is like an array except that it has the benefits of being able to grow, and it can be made Generic for extra type safety. LinkedList is a specialised data structure you won't use as often but can be useful for Queues and so on.</li> <li>You would use a Set when you don't want duplicate elements but ordering is unimportant. You would use an ArrayList when ordering is important and you want duplicate elements. If you care about Ordering and duplicates then LinkedHashSet is an option.</li> <li>TreeMap is Ordered, but has slightly slower O(ln n) access. HashMap is unordered but is usually slightly quicker. TreeMap requires a comparison or for elements to be Comparable. HashMap is probably your default choice.</li> </ol> http://stackoverflow.com/questions/479112/questions-to-indicate-competency-in-java/479242#479242 1 Answer by coobird for Questions to indicate competency in Java coobird 2009-01-26T09:39:02Z 2009-01-26T09:39:02Z <p><strong>What does the following program print?</strong></p> <pre><code>public class ReferencesArePassByValue { public static void doSomething(Integer i) { i = new Integer(5); } public static void main(String[] args) { Integer value = new Integer(42); doSomething(value); System.out.println(value); } } </code></pre> <p><strong>Answer: 42.</strong></p> <p><strong>Reason:</strong> In Java, references are passed-by-value. </p> <p>A copy of the reference to the <code>new Integer(42)</code> stored in <code>value</code> is passed into the <code>doSomething</code> method. In the <code>doSomething</code> method, the copy of the reference stored in <code>i</code> is tossed out, and the new object reference to <code>new Integer(5)</code> is assigned to <code>i</code>. Note, only the <em>copy</em> of the reference was thrown out here. The method only received a copy to the reference, so it does not affect the original reference in the <code>main</code> method.</p> <p>Therefore, there is no effect to the <code>value</code> variable in the <code>main</code> method. The <code>value</code> variable keeps the reference to the <code>new Integer(42)</code>, so the output of the program is <code>42</code>.</p> <p>There seems to be quite a bit of misunderstanding in this topic. This is <strong>not</strong> pass by reference. In fact, everything in Java, be it primitives or references, are passed to method by-value, not by-reference.</p> <p>Related questions and links: </p> <ul> <li><a href="http://stackoverflow.com/questions/333151/java-how-to-pass-byte-by-reference">Java: How to pass byte[] by reference?</a></li> <li><a href="http://javadude.com/articles/passbyvalue.htm" rel="nofollow">Java is Pass-by-Value, Dammit!</a> </li> </ul> http://stackoverflow.com/questions/479112/questions-to-indicate-competency-in-java/479298#479298 1 Answer by nooomi for Questions to indicate competency in Java nooomi 2009-01-26T10:08:37Z 2009-01-26T10:08:37Z <p>Have a look at this one: <a href="http://www.javablackbelt.com/" rel="nofollow">JavaBlackBelt</a>.</p> http://stackoverflow.com/questions/479112/questions-to-indicate-competency-in-java/479407#479407 0 Answer by david a. for Questions to indicate competency in Java david a. 2009-01-26T10:57:29Z 2009-01-26T11:15:09Z <p>Comparsion of strings, taken from javabeginner.com:</p> <pre><code>public class StringComparsion { public static void main(String[] args) { String name1 = "Bob"; String name2 = new String("Bob"); String name3 = "Bob"; // 1st case if (name1 == name2) { System.out.println("The strings are equal."); } else { System.out.println("The strings are unequal."); } // 2nd case if (name1 == name3) { System.out.println("The strings are equal."); } else { System.out.println("The strings are unequal."); } } } </code></pre> <p><strong>Answer:</strong> First compares to unequal, the second compares to equal (there's only one static string "Bob" created and both name1 and name3 point to it).</p> http://stackoverflow.com/questions/479112/questions-to-indicate-competency-in-java/479433#479433 0 Answer by DrJokepu for Questions to indicate competency in Java DrJokepu 2009-01-26T11:06:51Z 2009-01-26T11:06:51Z <p><strong>What is your opinion on checked exceptions in Java? What are the advantages and disadvantages?</strong></p> <p>I think being able to answer questions like this indicates that you are not just a code monkey - you have the ability to see the bigger picture as well.</p> http://stackoverflow.com/questions/479112/questions-to-indicate-competency-in-java/479452#479452 1 Answer by Pierre for Questions to indicate competency in Java Pierre 2009-01-26T11:13:48Z 2009-01-26T11:13:48Z <p>Via: Ethan Nicholas's Blog <a href="http://weblogs.java.net/blog/enicholas/archive/2006/05/understanding_w.html" rel="nofollow">http://weblogs.java.net/blog/enicholas/archive/2006/05/understanding_w.html</a></p> <p>Some time ago I was interviewing candidates for a Senior Java Engineer position. Among the many questions I asked was "<strong>What can you tell me about weak references?</strong>" I wasn't expecting a detailed technical treatise on the subject. I would probably have been satisfied with "Umm... don't they have something to do with garbage collection?" I was instead surprised to find that out of twenty-odd engineers, all of whom had at least five years of Java experience and good qualifications, only two of them even knew that weak references existed, and only one of those two had actual useful knowledge about them.</p> http://stackoverflow.com/questions/479112/questions-to-indicate-competency-in-java/479459#479459 0 Answer by Thorbjørn Ravn Andersen for Questions to indicate competency in Java Thorbjørn Ravn Andersen 2009-01-26T11:24:04Z 2009-01-26T11:24:04Z <p>To learn a programming language properly you need to write code. LOTS of code. </p> <p>I'd suggest that you solve as many problems as you can from Project Euler (<a href="http://projecteuler.net/index.php?section=problems" rel="nofollow">http://projecteuler.net/index.php?section=problems</a>) in Java - there are problems of every difficulty requiring only the Java knowledge available from <a href="http://java.sun.com/docs/books/tutorial/" rel="nofollow">http://java.sun.com/docs/books/tutorial/</a>.</p> <p>This gives you a strong knowledge of the core language. Then you can start digging into what else you need - database access (JDBC), GUIs (Swing), web stuff (servlets/jsp) or what have you, plus all the "hey this is strange"-stuff.</p> <p>Have fun - there is always more to learn :)</p>