This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
In the tutorial on SCJP Title-8: The java.awt. package- Layout. Q3 is answered incorrectly. I have repeated the question and answer below, as given on the site. 3. BorderLayout is concerned? Select all legal statements? [a] add ("North", new Button ("1")); [b] add (new Button ("2"), BorderLayout. SOUTH ); [c] add (BorderLayout.EAST, new Button ("3")); [d] add ( new Button ("4"); [e] constant, BorderLayout.SOUTH and "South", can be mixed. Answer 3 [b] add (new Button ("2"), BorderLayout. SOUTH ); [d] add ( new Button ("4"); [e] constant, BorderLayout.SOUTH and "South", can be mixed. There are at least three errors. [a] is correct and does work. [c] is correct and does work. [d] is incorrect due to a typo, missing a closing ')'. regards, Peter French.