SCJP is a certification for programmers experienced using the Java programming language. SCJP affirms that the programmer really knows how to code in Java. However the ability to design and implement a complete application is not affirmed by this test (it is affirmed by the second step ...

learn more… | top users | synonyms

5
votes
2answers
73 views

Do strings used in a System.out.println also create new immutable objects?

So I'm studying for the SCJP from the Kathy Sierra book. In the chapter for strings, this is a question: String s1 = "spring "; String s2 = s1 + "summer "; s1.concat( "fall "); s2.concat(s1); s1 += ...
0
votes
1answer
23 views

SCJP with label

Below will be compilation fail due to "label z is missing" but if I just move z: to one step below after o = o + 2 then that will work? What is the logic behind this? public class Breaker { static ...
-1
votes
0answers
11 views

Do I need re-appear SCJP v6 for taking SCJD or SCEA v6 [closed]

In the past I cleared SCJP 1.4 certification. I am willing to appear for SCJD and SCEA with version 6 or 7. Do I need to re-appear SCJP 6/7? Thanks!
0
votes
2answers
67 views

How many objects are eligible for gc [closed]

Can You please explain this answer..? As I expected answer C Given: 11. class Snoochy { 12. Boochy booch; 13. public Snoochy() { booch = new Boochy(this); } 14. } 15. 16. class Boochy { 17. ...
0
votes
2answers
119 views

Should tricky questions exist on the OCPJP exam? [closed]

When I practice to take the OCJP exam, I see that the questions that I'm suppose to practice on are often trick questions which try to fool my into answering wrong. The example is from the Bathes / ...
0
votes
2answers
54 views

How the exists() method of class File works?

Good Morning, i have used these method to check if a certain file exists in a group of directories: public static boolean doesFileExist(String[] directories, String fileName) { String path = " "; ...
0
votes
2answers
67 views

why it's NOT safe to replace a StringBuffer object with a StringBuilder in java version earlier than 1.5

Good evening, i read these statement in a blog it's NOT safe to replace a StringBuffer object with a StringBuilder in java version earlier than 1.5 and it seems to be a fact, but there's no apparent ...
0
votes
3answers
86 views

Java Method Overloading with Boxing/Widening

I am working on Java Se 7 OCA and could not figure out why below code does not compile. aMethod call in main method gives compile error stating ambiguous method. Precedence rules between widening and ...
-4
votes
2answers
79 views

how to declare variable like this— ArrayList LinkedhashMap

how to declare variable like this-- ArrayList LinkedhashMap.
0
votes
0answers
61 views

Appear for OCMJD/SCJD in india((Delhi) [closed]

* Not sure why its being downvoted and also one close vote, I see it as a question related to programming Profession And as per FAQ, Questions related to programming profession are allowed. Also, the ...
0
votes
1answer
96 views

SCJP subSet() has to be casted to (TreeSet<Integer>)

I found a curious SCJP question that at first looks as if it was answered correctly: TreeSet<Integer> s = new TreeSet<Integer>(); TreeSet<Integer> subs = new ...
-1
votes
3answers
65 views

Shadowing variables in methods

I was reading the certification book of Java 6. And there was an example about "Shadowing variables": package scjp; class Class1 { int number = 28; } public class Example { Class1 myClass ...
2
votes
1answer
89 views

count number of objects that's eligible for GC

Good Evening, please look at this code samples that demonstrates the number of objects that's eligible for GC: public class CardBoard { Short story = 5; CardBoard go(CardBoard cb) { cb = null; ...
0
votes
0answers
189 views

Are There many differences between Java SE 7 and Java SE 6 certificate's questions? [closed]

I have prepared for Java 6 SE Programmer certificate, but i haven't took exam yet. So now i don't know can i take Java 7 Programmer SE, so i mean can i pass exam or there are many differences between ...
0
votes
4answers
84 views

Primitive wrappers comparison [duplicate]

Possible Duplicate: Using == operator in Java to compare wrapper objects java version 1.6.0_26 From a book for SCJP exam preparation: In order to save memory, two instance of the ...
1
vote
2answers
140 views

Java SneakyThrow of exceptions, type erasure

Can someone explain this code? public class SneakyThrow { public static void sneakyThrow(Throwable ex) { SneakyThrow.<RuntimeException>sneakyThrowInner(ex); } private static <T ...
0
votes
2answers
97 views

How can this code cause deadlock?

While passing SCJP6 exam simulator I found question like this: class Clerk implements Runnable { private Record A, B; public Clerk(Record a, Record b) { A = a; B = b; } ...
2
votes
2answers
90 views

Overriding `equals()` method gives unexpected result in `HashMap`

It is question from OCJP 6 exam, so it is intentionally not fully correct (but legal). Given code: class ToDos { String day; public ToDos(String d) { day = d; } public ...
-7
votes
2answers
96 views

Casting - How to call? [closed]

How to call? How to do? public class Test { public static void main(String[] args) { Test test = new Test(); Animal a = new Animal("Animal"); Dog d = new ...
2
votes
1answer
51 views

Possibility to override DateFormat.getDateTimeInstance()?

I just wonder, is it possible to tell our JVM to use a default DateFormat that is not the one configured for the current locale for exemple? I know I can provide the Locale but I don't want to. ...
0
votes
0answers
64 views

After SCJP to Web Programer [closed]

I have just finished SCJP, now I would like to go on to Web Programer and perhaps Designer, I don't know exactly the name. However, I would like to be able to code and design my own web from A to Z. ...
3
votes
2answers
109 views

Anonymous innerclass declared in an interface: what is the outerclass?

Consider the following: public class OuterClass { private String attribute = "outer"; class InnerClass { private String attribute = "inner"; public doSomething() { ...
1
vote
3answers
451 views

java generics super vs. extends

Just when I thought I finally understood generics, I came across the following example: public class Organic<E> { void react(E e) { } static void main(String[] args) { ...
1
vote
4answers
95 views

java garbage collection and null reference

In my studying for OCJP I came across the following question: class CardBoard { Short story = 200; CardBoard go(CardBoard cb) { cb = null; return ...
3
votes
3answers
195 views

Why can not I add two bytes and get an int and I can add two final bytes get a byte?

public class Java{ public static void main(String[] args){ final byte x = 1; final byte y = 2; byte z = x + y;//ok System.out.println(z); byte a = 1; ...
0
votes
4answers
140 views

java string comparison (equals vs. ==) [duplicate]

Possible Duplicate: How do I compare strings in Java? Demonstrating string comparison with Java I am getting confused by the very basics here. Since I've started using java I was always ...
1
vote
1answer
271 views

Why can not I use toString().length() as a hashCode() return?

public class Dog { int collarID; String name; public static void main(String[] args){ Dog d = new Dog(); d.name="hose"; System.out.print(d.hashCode()); ...
1
vote
3answers
161 views

how to determine objects eligible for garbage collection in the given program?

Given: public class Trees { Trees t; public static void main(String[] args) { Trees t = new Trees(); Trees t2 = t.go(t); t2 = null; // more code here : LINE ...
2
votes
3answers
291 views

How can't we compare two enum values with '<'?

If enum implements Comparable so why can't compare with < or >? public class Dream { public static void main(String... args) { System.out.println(PinSize.BIG == ...
4
votes
3answers
115 views

How to test programmatically wheather assertions have been enabled?

One of the answers of Practice Exams (OCP Java SE 6) questions is: *You can programmatically test wheather assertions have been enabled without throwing an AssertionError. - Correct answer and my ...
2
votes
3answers
78 views

Assigning result of an expression to a primitive

K.Sierra in her book "SCJP Study Guide" mentions "We know that a literal integer is always an int, but more importantly, the result of an expression involving anything int-sized or smaller is always ...
3
votes
2answers
422 views

java LinkedHashSet

I've been studying for OCJP (former SCJP) and I came across the following example which uses LinkedHashSet: public class Test{ int size; public Test(int s){ this.size = s; } ...
2
votes
4answers
231 views

Protected member behavior once it was inherited.

I've got some doubts regarding protected identifier. In the first chapter of Sun Certified Java Programmer Study Guide by K.Sierra I found the following information: "Once the ...
0
votes
1answer
157 views

Treeset subsets

Hi I am having trouble understanding why the output is 'ex [6, 7, b, d] [6, 7, b]' for this piece of code. Please can someone advise how the subset is working with the numbers and letters? ...
4
votes
3answers
84 views

Slight confusion regarding overriding where variables are concerned

I'm preparing for the SCJP (recently rebranded as OCPJP by Oracle) and one particular question that I got wrong on a mock exam has confused me, the answer description doesn't explain things clear ...
3
votes
4answers
63 views

Identifer versus keyword

I read in the book for OCJP for Java6 the part with assertions. I reached the part where it gives me an overview of how the compiler reacts if the word 'assert' is used as keyword or as an identifier. ...
0
votes
3answers
123 views

Why new StringBuffer(new StringBuilder(“foo”)) does work?

I'm studying for the SCJP certificate and while playing with the StringBuilder and StringBuffer API's I found some situations I can't understand what is happening there. Here is my example code: ...
4
votes
1answer
70 views

Arguments and Parameters

I am reading the SCJP 6 book by Sierra and Bates. In the first chapter there is a section on "Final Arguments" (page 41). In this section it refers to "method arguments" as "variable declarations that ...
1
vote
1answer
129 views

Instantiate an Inner class from within a static method of its enclosing Class [duplicate]

we know that Static contexts can't reference any instance of any type, but what happens with main method, how the following code sample compiles with no problem: public class MyOuter { public ...
0
votes
3answers
250 views

java legal identifiers

I'm readind an eBook that sais: int :b; int e#; are not legal identifiers, but I don't understand why ":" and "#" are not legal tokens. Do you have any idea?
2
votes
4answers
587 views

What does a bitwise exclusive OR do in Java?

Given: public class Spock { public static void main(String[] args) { Long tail = 2000L; Long distance = 1999L; Long story = 1000L; if ((tail > distance) ^ ...
3
votes
5answers
495 views

Thread object constructed by runnable overrides the run method

Given this sample code: Runnable r = new Runnable() { public void run() { System.out.print("Cat"); } }; Thread t = new Thread(r) { public void run() { System.out.print("Dog"); } }; ...
2
votes
2answers
527 views

garbage collector Issue

this question is like my previous one Given: 3. interface Animal { void makeNoise(); } 4. class Horse implements Animal { 5. Long weight = 1200L; 6. public void makeNoise() { ...
4
votes
2answers
351 views

when an object is eligible for a garbage collector?

consider this sample code: 1. public class GC { 2. private Object o; 3. private void doSomethingElse(Object obj) { o = obj; } 4. public void doSomething() { 5. Object o = new ...
-5
votes
1answer
224 views

OCP Java SE 6 Exam Code [closed]

I am going to take "OCP Java SE 6 programmer" exam next week. But I am confusing about the exam code. OCP Java SE 6 programmer exam code is "1Z0-851" or "310-065" . Now which version is available? ...
2
votes
5answers
3k views

Are SCJP 6 and OCJP both same?

Are both SCJP 6 and OCJP 6 exams same? I am going to write OCJP 6 exam this month end but I am preparing SCJP 6 book by Kathy Seirra. And for practice I am preparing Kathy seirra's "OCP Java SE 6 ...
1
vote
4answers
182 views

method-local inner class cannot use variables declared within the method

Why a method-local inner class can't use variables declared inside the enclosing method except those marked final, i know that the variables declared inside the enclosing method might vanishes while ...
2
votes
1answer
150 views

Anonymous innerclass declaration for an instance attribute, using another instance attribute

When using an anonymous innerclass inside a method, when we want to use a method parameter inside the anonymous innerclass, we must mark it as final. Some details here: Why do we use final keyword ...
0
votes
3answers
175 views

ClassCastException because of classloaders?

While playing with classloaders i got the following exception: Exception in thread "main" java.lang.ClassCastException: xxx.Singleton cannot be cast to xxx.Singleton Does this mean that an instance ...
5
votes
4answers
218 views

Why is a boolean expression valid in a case block, when booleans are not supported data types for switches?

After reading some of the SCJP certification last night, I got thinking about switch statements and how the expressions are evaluated, and I'm a little puzzled by something. Java won't let you switch ...

1 2 3 4