Tagged Questions

SCJP is a certification for programmers experienced using the Java programming language.

learn more… | top users | synonyms

51
votes
6answers
1k views

Why does Double.NaN==Double.NaN return false?

I was just studying OCPJP questions and I found this strange code: public static void main(String a[]) { System.out.println(Double.NaN==Double.NaN); ...
21
votes
3answers
659 views

Java arrays - Why is the output '1' ?

Why is the output in this example 1? public static void main(String[] args){ int[] a = { 1, 2, 3, 4 }; int[] b = { 2, 3, 1, 0 }; System.out.println( a [ (a = b)[3] ] ); } I thought it ...
14
votes
15answers
2k views

Are certifications useful for Java programmers who wish to advance their career? [closed]

I have just started my career as a programmer. If I do Java certification starting from Sun Certified Java Programmer level (foundation level) and then web component developer and business component ...
13
votes
2answers
229 views

Why do we use final keyword with anonymous inner classes?

I'm currently preparing the S(O)CJP, with the Sierra & Bates book. About inner classes (method local or anonymous), they say that we can't access the local variables because they live on the ...
11
votes
8answers
3k views

SCJP exam - your best tips for passing

Having recently started studying for the SCJP exam, I was wondering where to put some extra focus. So, to those of you who have taken the test (and preferably passed): Any particular topics I need ...
10
votes
5answers
2k views

Does SCJP help?

Does SCJP help? Does it enhance your programming skills? Or just kinda another exam with emphasis on syntax?
9
votes
2answers
207 views

Java Inheritance issue

While exploring for scjp questions, I came across this behaviour which I found strange. I have declared two classes Item and Bolt as follows: class Item { int cost = 20; public int getCost() { ...
9
votes
4answers
238 views

Why is the output like this?

class another { public void method(Object o) { System.out.println("This is in method which takes object"); } public void method(String s) { System.out.println("This is ...
8
votes
2answers
103 views

Confused over initialisation of instance variables

I'm studying up for the SCJP exam, upon doing some mock tests I came across this one : It asks what is the output of the following : class TestClass { int i = getInt(); int k = 20; public ...
8
votes
2answers
659 views

Sun Certification Plus vs. “old” certification system

a few month ago, I passed the SCJP - the Sun Certified Java Programmer. I intended to do the SCWCD now, but there's this Sun Certification Plus-thing going on... so I don't know if it's worth ...
8
votes
9answers
3k views

Taking the SCJP exam [closed]

What do you think about taking the Sun Certified Java Programmer (SCJP) exam? I think it's an essential requirement to learn the Java language properly. Without it silly programming mistakes are made ...
6
votes
3answers
94 views

Hidden fields though inheritance

In the following code example: class Parent { int x =5; public Integer aMethod(){ System.out.print("Parent.aMthod "); return x; } } class Child extends Parent { int ...
6
votes
7answers
97 views

Post and Pre increment operators

When i run the following example i get the output 0,2,1 class ZiggyTest2{ static int f1(int i) { System.out.print(i + ","); return 0; } public ...
6
votes
3answers
123 views

Literal string creation vs String object creation

How many String object are created I am studying for the SCJP I cant seem to get my head round this String problem. I seem to see several possible answers depending on how i look at a question. In ...
6
votes
5answers
153 views

Why is this code not thread safe?

In code snippet below, declaring the doThings() method as static would make the class thread-safe. Is the reason for this that if multiple TestSeven threads are started and since x is a static ...
6
votes
3answers
149 views

What are the Changes to sun SCJP/SCJA/SCEA tracks since oracle took over?

The Context: It appears that the simple scjp ->scja->.... tracks for sun certification have been merged with other oracle style certifications... As a developer, I've spent some time lately trying ...
6
votes
2answers
163 views

What does redefining static methods mean in Java?

I've been reading a section on Statics in the SCJP study guide, and it mentions the following : static methods can't be overridden, but they can be redefined What does redefining actually ...
6
votes
4answers
179 views

Java wildcard strange behaviour when class is generic

I thought that i have some good understanding of Java generics. This code DOES NOT COMPILE and I know why. We can pass to test method only List of type Animal or its super type (like List of ...
6
votes
5answers
612 views

Getting confused in with == and = in “if” statement

I know that we cant use assignment operator in if statements in java as we use in any other few languages. that is int a; if(a = 1) { } will give a compilation error. ...
5
votes
4answers
144 views

How does Java handle String objects in memory?

I was asked this question: String s = "abc"; // creates one String object and one // reference variable In this simple case, "abc" will go in the pool and s will refer to it. String s = ...
5
votes
3answers
146 views

How many String objects will be created

I have the following Java code: public String makinStrings() { String s = "Fred"; s = s + "47"; s = s.substring(2, 5); s = s.toUpperCase(); return s.toString(); } The question is somehow ...
5
votes
6answers
4k views

SCJP for Java 6 or wait for Java 7?

Is it worth taking the current SCJP exam (CX-310-065) for Java 6, or is it worth waiting for Java 7 to be completed later in the year (hopefully!) and take that exam, rather than be "out of date" by ...
4
votes
2answers
39 views

Does wrapper widening beat unboxing?

class Dec26 { public static void main(String[] args) { short a1 = 6; new Dec26().go(a1); new Dec26().go(new Integer(7)); } void go(Short x) { System.out.print("S "); } void ...
4
votes
2answers
82 views

Compiler warnings when declaring Generic types

Why does the compiler issue a warning when declaring a variable as List<? extends Object> list = new LinkedList(); Warning: Note: ZiggyTest.java uses unchecked or unsafe operations. Note: ...
4
votes
4answers
37 views

Exceptions and errors report order

What rules applies to the following code: try { assert (false) : "jane"; } catch (Exception e2) { System.out.print("ae2 "); } finally { throw new ...
4
votes
3answers
112 views

Singletons, Enums and anonymous inner classes

As you may know, some people are declaring singletons with an Enum of 1 instance, because the JVM guarantees that there will always be a single instance with no concurrency problems to handle... Thus ...
4
votes
3answers
113 views

Overloading methods with var-args - combined with boxing and widening

When overloading methods that contain parameters that dont match, the JVM will always use the method with the smallest argument that is wider than the parameter. I have confirmed the above with the ...
4
votes
3answers
162 views

Syncronized threads and locking

Can someone please explain the difference between these two examples in the context of object locking: public void method1(){ synchronized(this){ .... } } And StringBuffer ...
4
votes
5answers
156 views

What benefit do method-local inner classes provide in Java?

I've just read through the chapter on method-local inner classes in the SCJP book, and I'm really struggling to think of any practical use for them. I've always been under the impression, that ...
4
votes
6answers
742 views

java IS-A relationship exam question confusion

From MasterExam: Which statements are true? (Choose all that apply) A. is-a relationship always rely on inheritance B. is-a relationship always rely on instance variables C. is-a ...
4
votes
4answers
424 views

Question concerning SCJP-6 exam

While preparing for the SCJP-6 exam I faced with a difficult issue. I can’t find answer by myself. Please, answer for the question and give short comments: abstract class A<K extends Number> { ...
4
votes
4answers
238 views

A Project idea which fits with Sun Certified Java Programmer (SCJP) preparation?

I'm currently preparing for the SCJP, which I plan to take in 6 months time. I was wondering weather you could give me any Java Project Ideas which ONLY involves Java (NOT JEE), which includes ...
4
votes
10answers
2k views

How long should I prepare for SCJP?

Ok I know this might sound a bit silly, as it depends on the person, but on average how much time should I spend on preparing for SCJP? I already have some experience with Java (a few small and medium ...
4
votes
6answers
2k views

Java Programming SCJA or SCJP

I am very new to programming, but it has been suggested to me that Java is a language worth looking at. Question:- Should I start with the SCJA or just go straight for the SCJP. My previous ...
4
votes
2answers
577 views

Var-arg of object arrays vs. object array — trying to understand a SCJP self test question

I'm having trouble understanding this question, and the explanation of the answer for an SCJP 1.6 self test question. Here is the problem: class A { } class B extends A { } public class ComingThru { ...
4
votes
14answers
3k views

Is an SCJP certificate worthwhile? [closed]

The SCJP exam tests only the concepts of java and not the programming ability of the individual in java. A person who scores more in SCJP may have less problem solving skills. In real-life ...
3
votes
3answers
98 views

Java Generic method/parameter types

In the following code example: interface Eatable{ public void printMe();} class Animal { public void printMe(){System.out.println("Animal object");}} class Dog extends Animal implements Eatable{ ...
3
votes
3answers
67 views

String objects created by a method

I'm doing a few mock test for my Oracle Certified Java Programmer certification. One of the question I found in a test is this one: public String makinStrings() { String s = “Fred”; s = s + “47”; ...
3
votes
3answers
87 views

Operator precedence in Java

In one example from http://leepoint.net/notes-java/data/expressions/precedence.html The following expression 1 + 2 - 3 * 4 / 5 Is evaluated as 1 + 2 - 3 * 4 / 5 = (1 + 2) - ((3 * 4) / 5) ...
3
votes
5answers
108 views

Way to init a generic collection since Java5 + diamond operator

As far as i know, the generics are only useful at compilation time. Thus it is possible to declare: private Set set = new HashSet<String>(); And then, in this string hashset, to add dogs or ...
3
votes
6answers
161 views

How are java arrays really working

Can someone explain me how arrays really work in Java. I was surprised by the following code: Object test = new Object[2][2]; Object test2 = new Object[] { new ...
3
votes
4answers
386 views

SCJP: can't widen and then box, but you can box and then widen

I'm studying for the SCJP exam and I ran into an issue I can't really wrap my head around. The book says you can't widen and then box, but you can box and then widen. The example for not being able ...
3
votes
3answers
347 views

Java - what's your favourite “gotcha” question for SCJP?

As I am preparing for, and planning to take the SCJP exam probably in next year, I am wondering if any Java programmer would like to share their "gotcha" question here, something simple but very ...
3
votes
3answers
267 views

Redefining static method in child class

I would like to know the reason why this is first allowed in Java (or oops in general) I remember that the static methods are common for both parent and child class public class Redefine extends ...
3
votes
3answers
954 views

scjp certification future validity

Is this the right time to go for a scjp certification?With Oracle being the authority won't SCJP lose its value as and when OCJP gets announced instead of the former? my worry is will one be able to ...
3
votes
4answers
165 views

SCJP question: Method ambiguous

Take a look at this code: public class Test { public static void main(String... args) { flipFlop("hello", new Integer(4), 2004); // flipFlop("hello", 10, 2004); // this works! } private ...
3
votes
1answer
979 views

SCJP question: Java method overloading with var-args. What is the rationale?

Why does the following program throw an exception? public class MainClass{ public static void main(String[] argv){ callMethod(2); } public static void callMethod(Integer... i){ ...
3
votes
3answers
307 views

Sun training for Sun Certified Java Programmer (SCJP) - classroom or web-based?

Does anybody has any experience with Sun training? I wonder if the extra $1000 is justified if I sign up for the classroom training vs. the web-based or cd-rom one? Any advantages / disadvantages for ...
2
votes
2answers
70 views

Is it true that if you don't specify an access modifier for an interface, that interface will have default access

I'm reading SCJP by Kathy Sierra and Bert Bates and it says on pg. 21 that "The public modifier is required if you want the interface to have public rather than default access". Is this true? If yes, ...
2
votes
2answers
90 views

Are instances of enums static by default?

enum Animals{ DOG("woof"),CAT("Meow"),FISH("Burble"); String sound; Animals(String s) { sound = s; } } public class TestEnum{ static Animals a; public static void main(String ...

1 2 3