Tagged Questions

http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=320&p_org_id=28&lang=US

learn more… | top users | synonyms

54
votes
6answers
2k 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); ...
33
votes
15answers
3k views

a = (a++) * (a++) gives strange results in Java [closed]

I'm studying for the OCPJP exam, and so I have to understand every little strange detail of Java. This includes the order in which the pre- and post-increment operators apply to variables. The ...
21
votes
3answers
664 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 ...
8
votes
2answers
104 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 ...
6
votes
7answers
105 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 ...
5
votes
2answers
73 views

java == for Integer [closed]

Possible Duplicate: Inconsistent behavior on java's == Integer wrapper objects share the same instances only within the value 127? I have found the following == behaviour for Integer ...
3
votes
3answers
104 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
1answer
311 views

java 7 materials

I would like to pass the OCPJA and OCPJP for Java 7 in a few months and I was wondering what useful study materials you know (books, articles, tutorials, mock tests etc.), apart from the official ...
2
votes
5answers
153 views

<?> and <? extends object>

I'm studying for the SCJP/OCPJP and I came across a sample question that seams strange to me. The sample code instantiated two generic collections... List<?> list = new ArrayList<?>(); ...
1
vote
4answers
100 views

Solving upcasting/downcasting problems

Does anyone have any workable strategy for solving casting/upcasting questions? I understand when upcasting and downcasting is allowed but when the questions tend to have multiple objects involved i ...
1
vote
3answers
82 views

Java Generics - Why is this method call considered an unchecked conversion

The following code examples compiles but with a compiler warning class Animal{} class Dog extends Animal{} class Cat extends Animal{} class SubArrayList<T> extends ArrayList{} class ...
1
vote
2answers
79 views

Confusion over Java's pass-by-value and immutability

In preparation for the SCJP (or OCPJP as it's now known) exam, I'm being caught out by some mock questions regarding pass-by-(reference)value and immutability. My understanding, is that when you pass ...
0
votes
1answer
151 views

SCJP/OCPJP 7 objectives [closed]

Which are the new objectives added for SCJP/OCPJP 7? Or to be more specific what are the changes between SCJP/OCPJP 6 and 7? PS: I am not sure if it is still called as SCJP. ~Ajinkya. ...
0
votes
1answer
59 views

Thread concurrency - synchronisation and locks.

import java.util.*; import java.io.*; import java.util.regex.*; class ZiggyTest2 extends Thread{ String sa; public ZiggyTest2(String sa){ this.sa = sa; } public void run(){ ...
0
votes
4answers
46 views

Formatting using printf and format

In the following program class ZiggyTest2 { public static void main(String[] args){ double x = 123.456; char c = 65; int i = 65; System.out.printf("%s",x); ...
0
votes
3answers
61 views

Java generics - Supertype references

If i have understood generics correctly, a method with parameters declared as <? super T> will accept any reference that is either of Type T or a super type of T. I am trying to test this with ...
0
votes
3answers
78 views

Java - ArrayList removal of duplicate items

In the following example: public static void main(String[] args){ List<String> list = new ArrayList<String>(); list.add("hi"); list.add("hi"); ...
0
votes
2answers
122 views

Garbage collection mock for the OCPJP exam

Four objects are eligible for garbage collection when i3 = null; is executed in the class shown below. I've added comments to explain how I got this answer. Is my reasoning correct? public class ...
0
votes
6answers
3k views

Are IKM Java tests more complex than Sun certification exams?

Has anyone taken any Java tests supplied by IKM (International Knowledge Measurement)? I would be interested in hearing how complex they are, compared to, say the Java certification exams from ...
-1
votes
1answer
83 views

Java - Choosing the right collection [closed]

Possible Duplicate: Rule of thumb for choosing an implementation of a Java Collection? I am looking for a 'Summary' list of all the Java collections detailing the pros and cons of each. I ...