For more SCJP 1.6 dumps please contact :admin@j2eereference.com
Question – 1
What is the output for the below code ?
1. public class A {
2. int add(int i, int j){
3. return i+j;
4. }
5. }
6. public class B extends A{
7. public static void main(String argv[]){
8. short s = 9;
9. System.out.println(add(s,6));
10. }
11. }
Options are
A. Compile fail due to error on line no 2
B. Compile fail due to error on line no 9
C. Compile fail due to error on line no 8
D. 15
Answer :
B is the correct answer.
Cannot make a static reference to the non-static method add(int, int) from the type A. The short s is autoboxed correctly, but the add() method cannot be invoked from a static method because add() method is not static.
Question – 2
What is the output for the below code ?
public class A {
int k;
boolean istrue;
static int p;
public void printValue() {
System.out.print(k);
System.out.print(istrue);
System.out.print(p);
}
}
public class Test{
public static void main(String argv[]){
A a = new A();
a.printValue();
}
}
Options are
A.0 false 0
B.0 true 0
C.0 0 0
D.Compile error – static variable must be initialized before use.
Answer :
A is the correct answer.
Global and static variable need not be initialized before use. Default value of global and static int variable is zero. Default value of boolean variable is false. Remember local variable must be initialized before use.
Question – 3
What is the output for the below code ?
public class Test{
int _$;
int $7;
int do;
public static void main(String argv[]){
Test test = new Test();
test.$7=7;
test.do=9;
System.out.println(test.$7);
System.out.println(test.do);
System.out.println(test._$);
}
}
Options are
A.7 9 0
B.7 0 0
C.Compile error – $7 is not valid identifier.
D.Compile error – do is not valid identifier.
Answer :
D is the correct answer.
$7 is valid identifier. Identifiers must start with a letter, a currency character ($), or underscore ( _ ). Identifiers cannot start with a number. You can’t use a Java keyword as an identifier. do is a Java keyword.
Question – 4
What is the output for the below code ?
package com;
class Animal {
public void printName(){
System.out.println(“Animal”);
}
}
package exam;
import com.Animal;
public class Cat extends Animal {
public void printName(){
System.out.println(“Cat”);
}
}
package exam;
import com.Animal;
public class Test {
public static void main(String[] args){
Animal a = new Cat();
a.printName();
}
}
Options are
A.Animal
B.Cat
C.Animal Cat
D.Compile Error
Answer :
D is the correct answer.
Cat class won’t compile because its superclass, Animal, has default access and is in a different package. Only public superclass can be accessible for different package.
Question – 5
What is the output for the below code ?
public class A {
int i = 10;
public void printValue() {
System.out.println(“Value-A”);
}
}
public class B extends A{
int i = 12;
public void printValue() {
System.out.print(“Value-B”);
}
}
public class Test{
public static void main(String argv[]){
A a = new B();
a.printValue();
System.out.println(a.i);
}
}
Options are
A.Value-B 11
B.Value-B 10
C.Value-A 10
D.Value-A 11
Answer :
B is the correct answer.
If you create object of subclass with reference of super class like ( A a = new B();) then subclass method and super class variable will be executed.
Question – 6
What is the output for the below code ?
public enum Test {
BREAKFAST(7, 30), LUNCH(12, 15), DINNER(19, 45);
private int hh;
private int mm;
Test(int hh, int mm) {
assert (hh >= 0 && hh <= 23) : “Illegal hour.”;
assert (mm >= 0 && mm <= 59) : “Illegal mins.”;
this.hh = hh;
this.mm = mm;
}
public int getHour() {
return hh;
}
public int getMins() {
return mm;
}
public static void main(String args[]){
Test t = new BREAKFAST;
System.out.println(t.getHour() +”:”+t.getMins());
}
Question – 7
What is the output for the below code ?
public class A {
static{System.out.println(“static”);}
{ System.out.println(“block”);}
public A(){
System.out.println(“A”);
}
public static void main(String[] args){
A a = new A();
}
Options are
A.A block static
B.static block A
C.static A
D.A
Answer :
B is the correct answer.
First execute static block, then statement block then constructor.
}
Options are
A.7:30
B.Compile Error – an enum cannot be instantiated using the new operator.
C.12:30
D.19:45
Answer :
B is the correct answer.
As an enum cannot be instantiated using the new operator, the constructors cannot be called explicitly. You have to do like Test t = BREAKFAST;
Question – 8
What is the output for the below code ?
1. public class Test {
2. public static void main(String[] args){
3. int i = 010;
4. int j = 07;
5. System.out.println(i);
6. System.out.println(j);
7. }
8. }
Options are
A.8 7
B.10 7
C.Compilation fails with an error at line 3
D.Compilation fails with an error at line 5
Answer :
A is the correct answer.
By placing a zero in front of the number is an integer in octal form. 010 is in octal form .so its value is 8.
Question – 9
What is the output for the below code ?
1. public class Test {
2. public static void main(String[] args){
3. byte b = 6;
4. b+=8;
5. System.out.println(b);
6. b = b+7;
7. System.out.println(b);
8. }
9. }
Options are
A.14 21
B.14 13
C.Compilation fails with an error at line 6
D.Compilation fails with an error at line 4
Answer :
C is the correct answer.
int or smaller expressions always resulting in an int. So compiler complain about Type
mismatch: cannot convert from int to byte for b = b+7; But b += 7; // No problem
because +=, -=, *=, and /= will all put in an implicit cast. b += 7 is same as b = (byte)b+7
so compiler not complain.
Question – 10
What is the output for the below code ?
public class Test {
public static void main(String[] args){
String value = “abc”;
changeValue(value);
System.out.println(value);
}
public static void changeValue(String a){
a = “xyz”;
}
}
Options are
A.abc
B.xyz
C.Compilation fails
D.Compilation clean but no output
Answer :
A is the correct answer.
Java pass reference as value. passing the object reference, and not the actual object itself.
Simply reassigning to the parameter used to pass the value into the method will do
nothing, because the parameter is essentially a local variable.
Question – 11
What is the output for the below code ?
public class Test {
public static void printValue(int i, int j, int k){
System.out.println(“int”);
}
public static void printValue(byte…b){
System.out.println(“long”);
}
public static void main(String… args) {
byte b = 9;
printValue(b,b,b);
}
}
Options are
A.long
B.int
C.Compilation fails
D.Compilation clean but throws RuntimeException
Answer :
B is the correct answer.
Primitive widening uses the smallest method argument possible. (For Example if you pass short value to a method but method with short argument is not available then compiler choose method with int argument). But in this case compiler will prefer the older style before it chooses the newer style, to keep existing code more robust. var-args method is looser than widen.
Question – 12
You have a java file name Test.java inside src folder of javaproject
directory. You have also classes folder inside javaproject directory.
you have issued below command from command prompt.
cd javaproject
Which of the below command puts Test.class file inside classes folder ?
Options are
A.javac -d classes src/Test.java
B.javac Test.java
C.javac src/Test.java
D.javac classes src/Test.java
Answer :
A is the correct answer.
The -d option lets you tell the compiler in which directory to put the .class file it
generates (d for destination)
Question – 13
You have two class files name Test.class and Test1.class inside javaproject directory.
Test.java source code is :
public class Test{
public static void main (String[] args){
System.out.println(“Hello Test”);
}
}
Test1.java source code is :
public class Test1{
public static void main (String[] args){
System.out.println(“Hello Test1″);
}
}
you have issued below commands from command prompt.
cd javaproject
java Test Test1
What is the output ?
Options are
A.Hello Test
B.Hello Test Hello Test1
C.Hello Test1
D.Run fails – class not found
Answer :
A is the correct answer.
You must specify exactly one class file to execute. If more than one then first one will be executed.
Question – 14
You have a java file name Test.java .
Test.java needs access to a class contained in app.jar in “exam”
directory.
Which of the follwing command set classpath to compile clean?
Options are
A.javac -classpath exam/app.jar Test.java
B.javac -classpath app.jar Test.java
C.javac -classpath exam Test.java
D.None of the above
Answer :
A is the correct answer.
javac -classpath exam/app.jar Test.java is the correct command to set exam/app.jar in classpath.
Question – 15
What will be the result of compiling the following code:
public class SuperClass {
public int doIt(String str, Integer… data)throws Exception{
String signature = “(String, Integer[])”;
System.out.println(str + ” ” + signature);
return 1;
}
}
public class SubClass extends SuperClass{
public int doIt(String str, Integer… data)
{
String signature = “(String, Integer[])”;
System.out.println(“Overridden: ” + str + ” ” +
signature);
return 0;
}
public static void main(String… args)
{
SuperClass sb = new SubClass();
sb.doIt(“hello”, 3);
}
}
Options are
A.Overridden: hello (String, Integer[])
B.hello (String, Integer[])
C.Complilation fails
D.None of the above
Answer :
C is the correct answer.
Unhandled exception type Exception.
Question – 16
What happens when the following code is compiled and run.
Select the one correct answer.
for(int i = 2; i < 4; i++)
for(int j = 2; j < 4; j++)
if(i < j)
assert i!=j : i;
Options are
A.The class compiles and runs, but does not print anything.
B.The number 2 gets printed with AssertionError
C.compile error
D.The number 3 gets printed with AssertionError
Answer :
A is the correct answer.
When if condition returns true, the assert statement also returns true. Hence AssertionError does not get generated.
Question – 17
What happens when the following code is compiled and run.
Select the one correct answer.
for(int i = 2; i < 4; i++)
for(int j = 2; j < 4; j++)
assert i!=j : i;
Options are
A.The class compiles and runs, but does not print anything.
B.The number 2 gets printed with AssertionError
C.compile error
D.The number 3 gets printed with AssertionError
Answer :
B is the correct answer.
When i and j are both 2, assert condition is false, and AssertionError gets generated. .
Question – 18
try{
File f = new File(“a.txt”);
}catch(Exception e){
}catch(IOException io){
}
Is this code create new file name a.txt ?
Options are
A.True
B.False
C.Compilation Error
D.None
Answer :
C is the correct answer.
IOException is unreachable to compiler because all exception is going to catch by Exception block.
Question – 19
class A {
A(String s) {
}
A() {
}
}
1. class B extends A {
2. B() { }
3. B(String s) {
4. super(s);
5. }
6. void test() {
7. // insert code here
8. }
9. }
Which of the below code can be insert at line 7 to make clean
compilation ?
Options are
A.A a = new B();
B.A a = new B(5);
C.A a = new A(String s);
D.All of the above
Answer :
A is the correct answer.
A a = new B(); is correct because anonymous inner classes are no different from any other class when it comes to polymorphism.
Question – 20
What is the output for the below code ?
interface A {
public void printValue();
}
1. public class Test{
2. public static void main (String[] args){
3. A a1 = new A() {
4. public void printValue(){
5. System.out.println(“A”);
6. }
7. };
8. a1.printValue();
9. }
10. }
Options are
A.Compilation fails due to an error on line 3
B.A
C.Compilation fails due to an error on line 8
D.null
Answer :
B is the correct answer.
The A a1 reference variable refers not to an instance of interface A, but to an instance of an anonymous (unnamed) class. So no compilation error.
Question – 21
class A {
class A1 {
void printValue(){
System.out.println(“A.A1″);
}
}
}
1. public class Test{
2. public static void main (String[] args){
3. A a = new A();
4. // INSERT CODE
5. a1.printValue();
6. }
7. }
Which of the below code inserted at line 4, compile and produce the
output “A.A1″?
Options are
A.A.A1 a1 = new A.A1();
B.A.A1 a1 = a.new A1();
C.A a1 = new A.A1();
D.All of the above
Answer :
B is the correct answer.
correct inner class instantiation syntax is A a = new A(); A.A1 a1 = a.new A1();
Question – 22
What is the output for the below code ?
public class A {
public void printValue(){
System.out.println(“Value-A”);
}
}
public class B extends A{
public void printNameB(){
System.out.println(“Name-B”);
}
}
public class C extends A{
public void printNameC(){
System.out.println(“Name-C”);
}
}
1. public class Test{
2. public static void main (String[] args) {
3. B b = new B();
4. C c = new C();
5. newPrint(b);
6. newPrint(c);
7. }
8. public static void newPrint(A a){
9. a.printValue();
10. }
11. }
Options are
A.Value-A Name-B
B.Value-A Value-A
C.Value-A Name-C
D.Name-B Name-C
Answer :
B is the correct answer.
Class B extended Class A therefore all methods of Class A will be available to class B except private methods. Class C extended Class A therefore all methods of Class A will be available to class C except private methods.
Question – 23
What is the output for the below code ?
public class A {
public void printName(){
System.out.println(“Value-A”);
}
}
public class B extends A{
public void printName(){
System.out.println(“Name-B”);
}
}
public class C extends A{
public void printName(){
System.out.println(“Name-C”);
}
}
1. public class Test{
2. public static void main (String[] args) {
3. B b = new B();
4. C c = new C();
5. b = c;
6. newPrint(b);
7. }
8. public static void newPrint(A a){
9. a.printName();
10. }
11. }
Options are
A.Name-B
B.Name-C
C.Compilation fails due to an error on lines 5
D.Compilation fails due to an error on lines 9
Answer :
C is the correct answer.
Reference variable can refer to any object of the same type as the declared reference OR can refer to any subtype of the declared type. Reference variable “b” is type of class B and reference variable “c” is a type of class C. So Compilation fails.
Question – 24
What is the output for the below code ?
public class C {
}
public class D extends C{
}
public class A {
public C getOBJ(){
System.out.println(“class A – return C”);
return new C();
}
}
public class B extends A{
public D getOBJ(){
System.out.println(“class B – return D”);
return new D();
}
}
public class Test {
public static void main(String… args) {
A a = new B();
a.getOBJ();
}
}
Options are
A.class A – return C
B.class B – return D
C.Compilation fails
D.Compilation succeed but no output
Answer :
B is the correct answer.
From J2SE 5.0 onwards. return type in the overriding method can be same or subtype of the declared return type of the overridden (superclass) method.
Question – 25
What is the output for the below code ?
public class A {
private void printName(){
System.out.println(“Value-A”);
}
}
public class B extends A{
public void printName(){
System.out.println(“Name-B”);
}
}
public class Test{
public static void main (String[] args) {
B b = new B();
b.printName();
}
}
Options are
A.Value-A
B.Name-B
C.Value-A Name-B
D.Compilation fails – private methods can’t be override
Answer :
B is the correct answer.
You can not override private method , private method is not availabe in subclass . In this
case printName() method a class A is not overriding by printName() method of class B.
printName() method of class B different method. So you can call printName() method of class B.
Question – 26
What is the output for the below code ?
import java.io.FileNotFoundException;
public class A {
public void printName() throws FileNotFoundException {
System.out.println(“Value-A”);
}
}
public class B extends A{
public void printName() throws NullPointerException{
System.out.println(“Name-B”);
}
}
public class Test{
public static void main (String[] args) throws Exception{
A a = new B();
a.printName();
}
}
Options are
A.Value-A
B.Compilation fails-Exception NullPointerException is not compatible with throws
clause in A.printName()
C.Name-B
D.Compilation succeed but no output
Answer :
C is the correct answer.
The overriding method can throw any unchecked (runtime) exception, regardless of exception thrown by overridden method. NullPointerException is RuntimeException so compiler not complain.
Question – 27
What is the output for the below code ?
public class A {
public A(){
System.out.println(“A”);
}
public A(int i){
this();
System.out.println(i);
}
}
public class B extends A{
public B (){
System.out.println(“B”);
}
public B (int i){
this();
System.out.println(i+3);
}
}
public class Test{
public static void main (String[] args){
new B(5);
}
}
Options are
A.A B 8
B.A 5 B 8
C.A B 5
D.B 8 A 5
Answer :
A is the correct answer.
Constructor of class B call their superclass constructor of class A (public A()) , which execute first, and that constructors can be overloaded. Then come to constructor of class B (public B (int i)).
Question – 28
What is the output for the below code ?
1. public interface InfA {
2. protected String getName();
3. }
public class Test implements InfA{
public String getName(){
return “test-name”;
}
public static void main (String[] args){
Test t = new Test();
System.out.println(t.getName());
}
}
Options are
A.test-name
B.Compilation fails due to an error on lines 2
C.Compilation fails due to an error on lines 1
D.Compilation succeed but Runtime Exception
Answer :
B is the correct answer.
Illegal modifier for the interface method InfA.getName(); only public and abstract are Permitted
Question – 29
What is the output for the below code ?
public class D {
int i;
int j;
public D(int i,int j){
this.i=i;
this.j=j;
}
public void printName() {
System.out.println(“Name-D”);
}
}
1. public class Test{
2. public static void main (String[] args){
3. D d = new D();
4. d.printName();
5.
6. }
7. }
Options are
A.Name-D
B.Compilation fails due to an error on lines 3
C.Compilation fails due to an error on lines 4
D.Compilation succeed but no output
Answer :
B is the correct answer.
Since there is already a constructor in this class (public D(int i,int j)), the compiler won’t supply a default constructor. If you want a no-argument constructor to overload the with arguments version you already have, you have to define it by yourself. The constructor D() is undefined in class D. If you define explicit constructor then default constructor will not be available. You have to define explicitly like public D(){ } then the above code will work. If no constructor into your class , a default constructor will be automatically generated by the compiler.
Question – 30
public class A {
public void test1(){
System.out.println(“test1″);
}
}
public class B extends A{
public void test2(){
System.out.println(“test2″);
}
}
1. public class Test{
2. public static void main (String[] args){
3. A a = new A();
4. A b = new B();
5. B b1 = new B();
6. // insert code here
7. }
8. }
Which of the following , inserted at line 6, will compile and print
test2?
Options are
A.((B)b).test2();
B.(B)b.test2();
C.b.test2();
D.a.test2();
Answer :
A is the correct answer.
((B)b).test2(); is proper cast. test2() method is in class B so need to cast b then only test2() is accessible. (B)b.test2(); is not proper cast without the second set of parentheses,the compiler thinks it is an incomplete statement.
Question – 31
What is the output for the below code ?
1. public class Test {
2. public static void main(String… args) {
3. int x =5;
4. x *= 3 + 7;
5. System.out.println(x);
6. }
7. }
Options are
A.22
B.50
C.10
D.Compilation fails with an error at line 4
Answer :
B is the correct answer.
x *= 3 + 7; is same as x = x * (3 +7) = 5 * (10) = 50 because expression on the right is always placed inside parentheses.
Question – 32
What is the output for the below code ?
1. public class Test {
2. enum Month { JAN, FEB, MAR };
3. public static void main(String… args) {
4. Month m1 = Month.JAN;
5. Month m2 = Month.JAN;
6. Month m3 = Month.FEB;
7. System.out.println(m1 == m2);
8. System.out.println(m1.equals(m2));
9. System.out.println(m1 == m3);
10. System.out.println(m1.equals(m3));
11. }
12. }
Options are
A.true true true false
B.true true false false
C.false false true true
D.Compilation fails with an error at line 10
Answer :
B is the correct answer.
m1 and m2 refer to the same enum constant So m1 == m2 returns true BUT m1 and m3 refer to different enum constant So m1 == m3 returns false. m1.equals(m2) returns true because enum constant value is same (JAN and JAN). m1.equals(m3) return false because enum constants values are different (JAN and FEB).
Question – 33
What is the output for the below code ?
1. public class Test {
2. public static void main(String… args) {
3. int [] index = new int[5];
4. System.out.println(index instanceof Object);
5. }
6. }
Options are
A.true
B.false
C.Compilation fails with an error at line 3
D.Compilation fails with an error at line 4
Answer :
A is the correct answer.
An array is always an instance of Object
Question – 34
What is the output for the below code ?
public class Test {
public static void main(String… args) {
int a =5 , b=6, c =7;
System.out.println(“Value is “+ b +c);
System.out.println(a + b +c);
System.out.println(“String “+(b+c));
}
}
Options are
A.Value is 67 18 String 13
B.Value is 13 18 String 13
C.Value is 13 18 String
D.Compilation fails
Answer :
A is the correct answer.
If the left hand operand is not a String then + operator treat as plus BUT if left hand operand is a String then + perform String concatenation.
Question – 35
What is the output for the below code?
public class A {
public A() {
System.out.println(“A”);
}
}
public class B extends A implements Serializable {
public B() {
System.out.println(“B”);
}
}
public class Test {
public static void main(String… args) throws Exception {
B b = new B();
ObjectOutputStream save = new ObjectOutputStream(new
FileOutputStream(“datafile”));
save.writeObject(b);
save.flush();
ObjectInputStream restore = new ObjectInputStream(new
FileInputStream(“datafile”));
B z = (B) restore.readObject();
}
}
Options are
A.A B A
B.A B A B
C.B B
D.B
Answer :
A is the correct answer.
On the time of deserialization , the Serializable object not create new object. So constructor of class B does not called. A is not Serializable object so constructor is called.
Question – 36
What is the output for the below code?
public class A {
public A() {
System.out.println(“A”);
}
}
public class Test {
public static void main(String… args) throws Exception {
A a = new A();
ObjectOutputStream save = new ObjectOutputStream(new
FileOutputStream(“datafile”));
save.writeObject(a);
save.flush();
ObjectInputStream restore = new ObjectInputStream(new
FileInputStream(“datafile”));
A z = (A) restore.readObject();
}
}
Options are
A.A A
B.A
C.java.io.NotSerializableException
D.None of the above
Answer :
C is the correct answer.
Class A does not implements Serializable interface. So throws NotSerializableException on trying to Serialize a non Serializable object.
Question – 37
What will be the result of compiling and run the following code:
public class Test {
public static void main(String… args) throws Exception {
Integer i = 34;
int l = 34;
if(i.equals(l)){
System.out.println(true);
}else{
System.out.println(false);
}
}
}
Options are
A.true
B.false
C.Compile error
D.None of the above
Answer :
A is the correct answer.
equals() method for the integer wrappers will only return true if the two primitive types and the two values are equal.
Question – 38
What will be the result of compiling and run the following code:
public class Test {
public static void main(String… args) throws Exception {
File file = new File(“test.txt”);
System.out.println(file.exists());
file.createNewFile();
System.out.println(file.exists());
}
}
Options are
A.true true
B.false true
C.false true
D.None of the above
Answer :
B is the correct answer.
creating a new instance of the class File, you’re not yet making an actual file, you’re just creating a filename. So file.exists() return false. createNewFile() method created an actual file.so file.exists() return true.
Question – 39
What is the output for the below code ?
public class A {}
public class B implements Serializable {
private static A a = new A();
public static void main(String… args){
B b = new B();
try{
FileOutputStream fs = new
FileOutputStream(“b.ser”);
ObjectOutputStream os = new
ObjectOutputStream(fs);
os.writeObject(b);
os.close();
}catch(Exception e){
e.printStackTrace();
}
}
}
Options are
A.Compilation Fail
B.java.io.NotSerializableException: Because class A is not Serializable.
C.No Exception at Runtime
D.None of the above
Answer :
C is the correct answer.
No java.io.NotSerializableException, Because class A variable is static. static variables are not Serializable.
Question – 40
What will happen when you attempt to compile and run the following code
?
1. public class Test extends Thread{
2. public static void main(String argv[]){
3. Test t = new Test();
4. t.run();
5. t.start();
6. }
7. public void run(){
8. System.out.println(“run-test”);
9. }
10. }
Options are
A.run-test run-test
B.run-test
C.Compilation fails due to an error on line 4
D.Compilation fails due to an error on line 7
Answer :
A is the correct answer.
t.run() Legal, but does not start a new thread , it is like a method call of class Test BUT t.start() create a thread and call run() method.
Question – 41
What is the output for the below code ?
class A implements Runnable{
public void run(){
System.out.println(“run-a”);
}
}
1. public class Test {
2. public static void main(String… args) {
3. A a = new A();
4. Thread t = new Thread(a);
5. t.start();
6. t.start();
7. }
8. }
Options are
A.run-a
B.run-a run-a
C.Compilation fails with an error at line 6
D.Compilation succeed but Runtime Exception
Answer :
D is the correct answer.
Once a thread has been started, it can never be started again. 2nd time t.start() throws java.lang.IllegalThreadStateException.
Question – 42
What is the output for the below code ?
class A implements Runnable{
public void run(){
try{
for(int i=0;i<4;i++){
Thread.sleep(100);
System.out.println(Thread.currentThread().getName());
}
}catch(InterruptedException e){
}
}
}
public class Test {
public static void main(String argv[]) throws Exception{
A a = new A();
Thread t = new Thread(a,”A”);
Thread t1 = new Thread(a,”B”);
t.start();
t.join();
t1.start();
}
}
Options are
A.A A A A B B B B
B.A B A B A B A B
C.Output order is not guaranteed
D.Compilation succeed but Runtime Exception
Answer :
A is the correct answer.
t.join(); means Threat t must finish before Thread t1 start.
Question – 43
What is the output for the below code ?
public class B {
public synchronized void printName(){
try{
System.out.println(“printName”);
Thread.sleep(5*1000);
}catch(InterruptedException e){
}
}
public synchronized void printValue(){
System.out.println(“printValue”);
}
}
public class Test extends Thread{
B b = new B();
public static void main(String argv[]) throws Exception{
Test t = new Test();
Thread t1 = new Thread(t,”t1″);
Thread t2 = new Thread(t,”t2″);
t1.start();
t2.start();
}
public void run(){
if(Thread.currentThread().getName().equals(“t1″)){
b.printName();
}else{
b.printValue();
}
}
}
Options are
A.print : printName , then wait for 5 seconds then print : printValue
B.print : printName then print : printValue
C.print : printName then wait for 5 minutes then print : printValue
D.Compilation succeed but Runtime Exception
Answer :
A is the correct answer.
There is only one lock per object, if one thread has picked up the lock, no other thread can pick up the lock until the first thread releases the lock. printName() method acquire the lock for 5 seconds, So other threads can not access the object. If one synchronized method of an instance is executing then other synchronized method of the same instance should wait.
Question – 44
What is the output for the below code ?
public class B {
public static synchronized void printName(){
try{
System.out.println(“printName”);
Thread.sleep(5*1000);
}catch(InterruptedException e){
}
}
public synchronized void printValue(){
System.out.println(“printValue”);
}
}
public class Test extends Thread{
B b = new B();
public static void main(String argv[]) throws Exception{
Test t = new Test();
Thread t1 = new Thread(t,”t1″);
Thread t2 = new Thread(t,”t2″);
t1.start();
t2.start();
}
public void run(){
if(Thread.currentThread().getName().equals(“t1″)){
b.printName();
}else{
b.printValue();
}
}
}
Options are
A.print : printName , then wait for 5 seconds then print : printValue
B.print : printName then print : printValue
C.print : printName then wait for 5 minutes then print : printValue
D.Compilation succeed but Runtime Exception
Answer :
B is the correct answer.
There is only one lock per object, if one thread has picked up the lock, no other thread can pick up the lock until the first thread releases the lock. In this case printName() is static , So lock is in class B not instance b, both method (one static and other no-static) can run simultaneously. A static synchronized method and a non static synchronized method will not block each other.
Question – 45
What is the output for the below code ?
class A extends Thread{
int count = 0;
public void run(){
System.out.println(“run”);
synchronized (this) {
for(int i =0; i < 50 ; i++){
count = count + i;
}
notify();
}
}
}
public class Test{
public static void main(String argv[]) {
A a = new A();
a.start();
synchronized (a) {
System.out.println(“waiting”);
try{
a.wait();
}catch(InterruptedException e){
}
System.out.println(a.count);
}
}
}
Options are
A.waiting run 1225
B.waiting run 0
C.waiting run and count can be anything
D.Compilation fails
Answer :
A is the correct answer.
a.wait(); put thread on wait until not get notifed. A thread gets on this waiting list by executing the wait() method of the target object. It doesn’t execute any further instructions until the notify() method of the target object is called. A thread to call wait() or notify(), the thread has to be the owner of the lock for that object.
Question – 46
Which of the following statements about this code are true?
class A extends Thread{
public void run(){
for(int i =0; i < 2; i++){
System.out.println(i);
}
}
}
public class Test{
public static void main(String argv[]){
Test t = new Test();
t.check(new A(){});
}
public void check(A a){
a.start();
}
}
Options are
A.0 0
B.Compilation error, class A has no start method
C.0 1
D.Compilation succeed but runtime exception
Answer :
C is the correct answer.
class A extends Thread means the anonymous instance that is passed to check() method has a start method which then calls the run method.
Question – 47
HashMap can be synchronized by _______ ?
Options are
A.Map m = Collections.synchronizeMap(hashMap);
B.Map m = hashMap.synchronizeMap();
C.Map m = Collection.synchronizeMap(hashMap);
D.None of the above
Answer :
A is the correct answer.
HashMap can be synchronized by Map m = Collections.synchronizeMap(hashMap);
Question – 48
What is the output for the below code?
import java.util.LinkedList;
import java.util.Queue;
public class Test {
public static void main(String… args) {
Queue q = new LinkedList();
q.add(“newyork”);
q.add(“ca”);
q.add(“texas”);
show(q);
}
public static void show(Queue q) {
q.add(new Integer(11));
while (!q.isEmpty ( ) )
System.out.print(q.poll() + ” “);
}
}
Options are
A.Compile error : Integer can’t add
B.newyork ca texas 11
C.newyork ca texas
D.None of the above
Answer :
B is the correct answer.
” q was originally declared as Queue<String>, But in show() method it is passed as an untyped Queue. nothing in the compiler or JVM prevents us from adding an Integer after that. If the show method signature is public static void show(Queue<String> q) than you can’t add Integer, Only String allowed. But public static void show(Queue q) is untyped Queue so you can add Integer.Y poll() Retrieves and removes the head of this queue, or returns null if this queue is empty.
Question – 49
What is the output for the bellow code?
import java.util.Iterator;
import java.util.Set;
import java.util.TreeSet;
public class Test {
public static void main(String… args) {
Set s = new TreeSet();
s.add(“7″);
s.add(9);
Iterator itr = s.iterator();
while (itr.hasNext())
System.out.print(itr.next() + ” “);
}
}
Options are
A.Compile error
B.Runtime Exception
C.7 9
D.None of the above
Answer :
B is the correct answer.
| Without generics, the compiler does not know what type is appropriate for this TreeSet, so it allows everything to compile. But at runtime he TreeSet will try to sort the elements as they are added, and when it tries to compare an Integer with a String it will throw a ClassCastException.
? Exception in thread “main” java.lang.ClassCastException: java.lang.String cannot be
cast to java.lang.Integer.
Question – 50
What is the output for the below code?
import java.util.Iterator;
import java.util.TreeSet;
public class Test {
public static void main(String… args) {
TreeSet s1 = new TreeSet();
s1.add(“one”);
s1.add(“two”);
s1.add(“three”);
s1.add(“one”);
Iterator it = s1.iterator();
while (it.hasNext() ) {
System.out.print( it.next() + ” ” );
}
}
}
Options are
A.one three two
B.Runtime Exception
C.one three two one
D.one two three
Answer :
A is the correct answer.
h TreeSet assures no duplicate entries.it will return elements in natural order, which, for Strings means alphabetical.
Question – 51
If we do
ArrayList lst = new ArrayList();
What is the initial capacity of the ArrayList lst ?
Options are
A.10
B.8
C.15
D.12
Answer :
A is the correct answer.
/** * Constructs an empty list with an initial capacity of ten. */ public ArrayList()
{ this(10); }
Question – 52
What is the output for the below code ?
package bean;
public class Abc {
public static int index_val = 10;
}
package com;
import static bean.Abc.index_val;
public class Test1 {
public static void main(String… args) {
System.out.println(index_val);
}
}
Options are
A.10
B.compile error, index_val not defined
C.Compile error at import static bean.Abc.index_val;
D.None of the above
Answer :
A is the correct answer.
The static import construct allows unqualified access to static members without inheriting
from the type containing the static members. J2SE 5.0 onwards it allows static import like
import static bean.Abc.index_val; and can be use directly System.out.println(index_val);
Question – 53
Which of the following statement is true about jar command?
Options are
A.The jar command creates the META-INF directory implicitly.
B.The jar command creates the MANIFEST.MF file implicitly.
C.The jar command would not place any of your files in META-INF directory.
D.All of the above are true
Answer :
A is the correct answer.
All statements are true.
Question – 54
You have a class file name Test.class inside javaproject directory.
Test.java source code is :
import java.util.Properties;
class Test {
public static void main (String[] args){
Properties p = System.getProperties();
System.out.println(p.getProperty(“key1″));
}
}
you have issued below commands from command prompt.
cd javaproject
java -D key1=value1 Test
What is the output ?
Options are
A.value1
B.null
C.Run successfully but no output
D.Run fails – java.lang.NoClassDefFoundError: key1=value1
Answer :
D is the correct answer.
-D option , pair must follow immediately, no spaces allowed. In this case
there is space between -D and key1=value1 So java.lang.NoClassDefFoundError:
key1=value1.
Question – 55
What is the output for the below code ?
public class A {
public void printValue(){
System.out.println(“A”);
}
}
public class B extends A {
public void printValue(){
System.out.println(“B”);
}
}
1. public class Test {
2. public static void main(String… args) {
3. A b = new B();
4. newValue(b);
5. }
6. public static void newValue(A a){
7. if(a instanceof B){
8. ((B)a).printValue();
9. }
10. }
11. }
Options are
A.A
B.B
C.Compilation fails with an error at line 4
D.Compilation fails with an error at line 8
Answer :
B is the correct answer.
instanceof operator is used for object reference variables to check whether an object is of
a particular type. In newValue(b); b is instance of B So works properly.\
Question – 56
What is the output for the below code ?
1. public class Test {
2. static int i =5;
3. public static void main(String… args) {
4. System.out.println(i++);
5. System.out.println(i);
6. System.out.println(++i);
7. System.out.println(++i+i++);
8.
9. }
10. }
Options are
A.5 6 7 16
B.6 6 6 16
C.6 6 7 16
D.5 6 6 16
Answer :
A is the correct answer.
i++ : print value then increment (postfix – increment happens after the value of the
variable is used) ++i : increment the print (prefix – increment happens before the value of
the variable is used)
Question – 57
What is the output for the below code ?
1. public class Test {
2. public static void main(String… args) {
3. Integer i = 34;
4. String str = (i<21)?”jan”:(i<56)?”feb”:”march”;
5. System.out.println(str);
6. }
7. }
Options are
A.feb
B.jan
C.march
D.Compilation fails with an error at line 4
Answer :
A is the correct answer.
This is nested conditional with unbox. (i<21) is false goto (i<56), (i<56) is true so result
is “feb”.
Question – 58
What is the output ?
public class Test {
public static void main(String… args) {
Pattern p = Pattern.compile(“a+b?c*”);
Matcher m = p.matcher(“ab”);
boolean b = m.matches();
System.out.println(b);
}
}
Options are
A.true
B.false
C.Compile error
D.None of the above
Answer :
A is the correct answer.
X? X, once or not at all X* X, zero or more times X+ X, one or more times
Question – 59
What is the output for the below code ?
1. public class Test {
2. public static void main(String[] args){
3. byte i = 128;
4. System.out.println(i);
5. }
6. }
Options are
A.128
B.0
C.Compilation fails with an error at line 3
D.Compilation fails with an error at line 4
Answer :
C is the correct answer.
byte can only hold up to 127. So compiler complain about possible loss of precision.
Question – 60
What is the output for the below code ?
1. public class Test {
2. int i=8;
3. int j=9;
4. public static void main(String[] args){
5. add();
6. }
7. public static void add(){
8. int k = i+j;
9. System.out.println(k);
10. }
11. }
Options are
A.17
B.0
C.Compilation fails with an error at line 5
D.Compilation fails with an error at line 8
Answer :
D is the correct answer.
i and j are instance variable and attempting to access an instance variable from a static method. So Compilation fails .
Question – 61
Which collection class grows or shrinks its size and provides indexed
access to its elements, but methods are not synchronized?
Options are
A.java.util.ArrayList
B.java.util.List
C.java.util.HashSet
D.java.util.Vector
Answer :
A is the correct answer.
| ArrayList provides an index to its elements and methods are not synchronized.
Question – 62
What is the output of bellow code ?
public class Bean{
private String str;
Bean(String str ){
this.str = str;
}
public String getStr() {
return str;
}
public boolean equals(Object o){
if (!(o instanceof Bean)) {
return false;
}
return ((Bean) o).getStr().equals(str);
}
public int hashCode() {
return 12345;
}
public String toString() {
return str;
}
}
import java.util.HashSet;
public class Test {
public static void main(String … sss) {
HashSet myMap = new HashSet();
String s1 = new String(“das”);
String s2 = new String(“das”);
Bean s3 = new Bean(“abcdef”);
Bean s4 = new Bean(“abcdef”);
myMap.add(s1);
myMap.add(s2);
myMap.add(s3);
myMap.add(s4);
System.out.println(myMap);
}
}
Options are
A.das abcdef
B.das abcdef das abcdef
C.das das abcdef abcdef
D.das
Answer :
A is the correct answer.
implemented ‘equals’ and ‘hashCode’ methods to get unique result in Set.
Question – 63
What will happen when you attempt to compile and run the following code
?
class A implements Runnable{
public void run(){
System.out.println(“run-A”);
}
}
1. public class Test {
2. public static void main(String argv[]){
3. A a = new A();
4. Thread t = new Thread(a);
5. System.out.println(t.isAlive());
6. t.start();
7. System.out.println(t.isAlive());
8. }
9. }
Options are
A.false run-A true
B.false run-A false
C.true run-A true
D.Compilation fails due to an error on line 7
Answer :
A is the correct answer.
Once the start() method is called, the thread is considered to be alive.
Question – 64
What will happen when you attempt to compile and run the following code
?
1. public class Test extends Thread{
2. public static void main(String argv[]){
3. Test t = new Test();
4. t.run();
5. t.start();
6. }
7. public void run(){
8. System.out.println(“run-test”);
9. }
10. }
Options are
A.run-test run-test
B.run-test
C.Compilation fails due to an error on line 4
D.Compilation fails due to an error on line 7
Answer :
A is the correct answer.
t.run() Legal, but does not start a new thread , it is like a method call of class Test BUT
t.start() create a thread and call run() method.
Question – 65
Which of the following are methods of the Thread class?
1) yield()
2) sleep(long msec)
3) go()
4) stop()
Options are
A.1 , 2 and 4
B.1 and 3
C.3 only
D.None of the above
Answer :
A is the correct answer.
Check out the Java2 Docs for an explanation
Question – 66
What notifyAll() method do?
Options are
A.Wakes up all threads that are waiting on this object’s monitor
B.Wakes up one threads that are waiting on this object’s monitor
C.Wakes up all threads that are not waiting on this object’s monitor
D.None of the above
Answer :
A is the correct answer.
notifyAll() : Wakes up all threads that are waiting on this object’s monitor.A thread waits
on an object’s monitor by calling one of the wait methods.
Question – 67
What is the output for the below code?
import java.util.NavigableMap;
import java.util.concurrent.ConcurrentSkipListMap;
public class Test {
public static void main(String… args) {
NavigableMap navMap = new
ConcurrentSkipListMap();
navMap.put(4, “April”);
navMap.put(5, “May”);
navMap.put(6, “June”);
navMap.put(1, “January”);
navMap.put(2, “February”);
navMap.put(3, “March”);
navMap.pollFirstEntry();
navMap.pollLastEntry();
navMap.pollFirstEntry();
System.out.println(navMap.size());
}
}
Options are
A.Compile error : No method name like pollFirstEntry() or pollLastEntry()
B.3
C.6
D.None of the above
Answer :
B is the correct answer.
Y pollFirstEntry() Removes and returns a key-value mapping associated with the least
key in this map, or null if the map is empty.
Y pollLastEntry() Removes and returns a key-value mapping associated with the greatest key in this map, or null if the map is empty.
Question – 68
What is the output for the bellow code?
import java.io.Console;
public class Test {
public static void main(String… args) {
Console con = System.console();
boolean auth = false;
if (con != null)
{
int count = 0;
do
{
String uname = con.readLine(null);
char[] pwd = con.readPassword(“Enter %s’s
password: “, uname);
con.writer().write(“\n\n”);
} while (!auth && ++count < 3);
}
}
}
Options are
A.NullPointerException
B.It works properly
C.Compile Error : No readPassword() method in Console class.
D.None of the above
Answer :
A is the correct answer.
$ passing a null argument to any method in Console class will cause a
NullPointerException to be thrown.
Question – 69
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.NavigableSet;
import java.util.TreeSet;
public class Test {
public static void main(String… args) {
List lst = new ArrayList ();
lst.add(34);
lst.add(6);
lst.add(2);
lst.add(8);
lst.add(7);
lst.add(10);
NavigableSet nvset = new TreeSet(lst);
System.out.println(nvset.headSet(10,true));
}
}
Options are
A.Compile error : No method name like headSet()
B.2, 6, 7, 8, 10
C.2, 6, 7, 8
D.None of the above
Answer :
B is the correct answer.
À headSet(10) Returns the elements elements are strictly less than 10.
q headSet(10,false) Returns the elements elements are strictly less than 10.
- headSet(10,true) Returns the elements elements are strictly less than or equal to 10.
Question – 70
What is the output?
import java.util.ArrayList;
import java.util.List;
import java.util.NavigableSet;
import java.util.TreeSet;
public class Test {
public static void main(String… args) {
List lst = new ArrayList();
lst.add(34);
lst.add(6);
lst.add(2);
lst.add(8);
lst.add(7);
lst.add(10);
NavigableSet nvset = new TreeSet(lst);
System.out.println(nvset.lower(6)+” “+nvset.higher(6)+ “
“+ nvset.lower(2));
}
}
Options are
A.1 2 7 10 34 null
B.2 7 null
C.2 7 34
D.1 2 7 10 34
Answer :
B is the correct answer.
û lower() Returns the greatest element in this set strictly less than the given element, or
null if there is no such element.
¿ higher() Returns the least element in this set strictly greater than the given element, or
null if there is no such element.
// ]]>
please send some more SCJP1.6 dumps
Hi,
Can u please send me the SCJP1.6 dumps .I will write the exam in June,2011.
my mail:-damacherlasrinivas@gmail.com
Could you please send the dumps to my id… Thanks.
Sir/madam
please send me dumps mail_dheerendra@in.com .
I shall be thankful to you.
Keep posting stuff like this i really like it
Hi
i found this is helpful and i scored 94%
u can share this with ur frnds
Hi
Could you please send me the Dumps to my below ID.
preetamshah.java@gmail.com
Hi
I have planned to write SCJP by november end.Could you please send me the latest dumps to my below email id?
sharmiy2k@gmail.com
Hi friend,
I am about to write SCJP by nov 28th.Could you please send me the latest dumps to my email id.
dineshy2k88@gmail.com
Thanks in advance.
Useful blog website, keep me personally through searching it, I am seriously interested to find out another recommendation of it.
Hi All,
Please send the latest dumps and exam pattern for SCJP 6…..at mshashi2008@gmail.com
Thanx in Advance….
Regards,
Shashi
Can u please send me the SCJP1.6 dumps .I will write the exam in June,2011.
my mail:-rishigupta69@gmail.com
Hi please send the SCJP 1.6 dumps as im planning to take the exam by June.
Please do the needful.
What a great resource!
Hi,
Can u please send me the SCJP1.6 dumps .I will write the exam in July,2011.
Thanks
I am vijay . i want to take SCJP exam. So i request u to send the dumps which will be useful for me . I need it this week itself. Please do the needful. My email iD is vjmail88@yahoo.com
I am Selva . i want to take SCJP 1.6 exam. So i request u to send the dumps which will be useful for me . I need it this week itself. Please do the needful. My email iD is selvaji_mca@rediffmail.com
iam sravanthi,
can u please send me the dumps of scjp1.6
My email ID:sravanthimgt@gmail.com
Hi,
Can you please send me the dumps for SCJP 1.6. I will be taking this in July,2011.
My mail id : sharma.ravi70@gmail.com
Thanks in advance.
can any one send me scjp dumps plz
am planing to take exam.
id – madarapunaveen@gmail.com
Hey ,
I need SCJP 1.6 dumps……….please send me them asap….i am taking test in june 2011
MY EMAIL ID: saif_rahul@yahoo.co.in
Hi,
Kindly send me all the SCJP 1.6 dumps available…. I will be taking the test in June/July 2011.
My E-Mail ID :- rsravindra22@gmail.com
nice matterial
can u please send me the dumps of scjp1.6
My email ID: bbjavadev@gmail.com
Hi,
Please send me the SCJP Dumps. my email: piyustar07@gmail.com
Thx in advance
Hi,
Please send me the SCJP Dumps. my email: swati.pisal2009@gmail.com
Thx in advance
Hi,
Please send me the SCJP Dumps. my email: om24985@gmail.com
Thx in advance
Could you please send me the latest scjp 1.6 dumps. vern.ojha@gmail.com
Hi,
Can u please send me the dumps of SCJP 1.6
My email ID:tariprasad@gmail.com
Thanks in advance
hai,
I m planning to take the SCJP1.6 on july. can you plz send me the latest dumps.
My Email id— satyarajesh79@gmail.com
Thanks
Hi,
Please send me the SCJP Dumps. my email: seungheon.baek@gmail.com
Thx in advance
please send me SCJP 1.6 dumps as I am going to give my SCJP exam.
my email id is sht006@gmail.com
hi sir iam planning to write a ocpjp/scjp 1.6 exam with in this month
if u r having a latest dump can u please send the above mail id ASAP .
thanks and regards
srinadh
can u send me new version 1.6 dump question with answer
my email:muralignc@ymail.com
Could you please send me the scjp 1.6 dumps. I am planning to apper exam in july.
Cheers
Dhana
Can any one please kindly send me the latest SCJP1.6 dump. My Mail id is : amutha.devi@gmail.com
hi,
can you please send me more dumps on scjp 1.6 exam.i am planning to sit for it in coming August.It would be really help full.
Can u please send me the SCJP1.6 dumps .My Email Id: malyalamv@in.com
Hi,
Plz send me scjp 1.6 ,i am planning to give it next month
ambersoni.cse@gmail.com
Thanks,
Ambrish
Hi Dude,
i am preparing for scjp certification help me by providing dumps to my id guruprasathit@gmail.com
Hi Dude,
I am preparing for scjp certification so please help me by providing dumps to my id guruprasathit@gmail.com
Hi,
Can u please send me the SCJP1.6 dumps .I will write the exam in July,2011..Its help me lot.
my mail id is , harikrishnan.msc@gmail.com
plz can anyone send me dumps of ocjp 1.6 .i going to give this test in 15 july
my mail address gauravbtl.sitm@gmail.com
please forward me java scjp dumps
kandisrinath@live.com
Please mail me the dumps for 1.6 exam.. Thanks in Advance.
Kindly send me latest scjp6 dumps, I am planning the exam in july/august.
thanks
Hi,
Please send me the SCJP Dumps. my email: apoorv0308@gmail.com
Thanks in advance
Hi Can you plz send me the dumps
Hi,
Can u please send me the SCJP1.6 dumps .I will write the exam in July,2011.
hii Can u plz send me some dumps of SCJP1.6
my id is shrutisharma39@gmail.com
Dude i’m planning for SCJP 1.6 coming August,,
Can u plz mail me the dumps at agangotia@gmail.com.
Hii,
Please send the dumps to this id also punitrana2889@yahoo.com. I’ll be very thank full to you.
Regards
Punit
Hi,
Can anyone send me the SCJP 1.6 latest dumps.
Please mail me to my id is nadhi.1060@gmail.com.
Thanks
hi can you send me the latest dump of scjp 6 ,,,,,,i have to give the exam at the 19th of july 2011
my email id is icanseeyou.6@gmail.com
Hi i need the dumps for scjp 1.6.. i’m taking the exam in Aug…so please help me.. thnaks
Hi,
can anyone provide me the scjp dumps.I will be sitting for the exam in the month of august.
my id is kumari.santoshi15@gmail.com.
if anyone have then please send me on my email address.I will be very thankful for u.
Hi
Can u please send me the SCJP1.6 dumps .I will write the exam in August ,2011.
Please send the latest dumps to sindhu_allun@yahoo.com.
Thanks in advance.
hi
can u please send me the scjp 1.6 dumps.
please send the latest dumps to vijay.it84@gmail.com
thanks in advance
Reply soon ……………………………………………………..
Hi Friends can some one send scjp1.6 dump to swethaluckyreddy@gmail.com
Thnaks in advance
I am planning to go for SJP 6 exam.Kindly send me dumps at tiwariliferocks@gmail.com
Thanks in Advance.God bless you.
Hi,
Can u please send me the SCJP1.6 dumps ? My mail id is msuresh1808@gmail.com
Plz send me latest scjp6 dumps, I am planning the exam in july/august.
ameyredij@gmail.com
Could you please send the latest SCJP6 dumps to my mail ID: nareshcse7@gmail.com
Can anyone help me out,i need to appear the scjp exam and as u all know the dumps are a must to attend the exam,anyone having the scjp1.6 latest dumps can send me to gangulydada06@gmail.com
Thanks in advance.
All the very best to all guys who are going to attemp for SCJP6.
Best regards,
Naresh.Y
Chennai.
hiiiiii can anyone help me out,i will b appearing the scjp 1.6 exam 310-065 can anyone provide me the latest scjp 1.6 dumps my email address is gangulydada06@gmail.com
Thanks in advance.
Hello there,
planing to take SCJP 1.6 exam on second week of August 2011, could you pls send me dumps pls??
thx in advance for your help!!
Regards
Naidu
can anybody send scjp to me please
can anybody send scjp to me please to this email venkatarao.pidikiti@gmail.com
Hello everybody,
Plz frwd me SCJP 1.6 dumps on pkanawade7@gmail.com as I am planning to give SCJP in next week.
Waiting for ur mail….
Thnx…
Regards
PratiK
planing to take SCJP 1.6 exam on end of August 2011.so please any one send latest dumps to me. my mail id is manikandanmk1988@gmail.com
Hi,
I’m planing to attend SCJP exam in next month.
ASAP pls forward me SCJP dump.
I appriciate your swift response.
Thanks & Regards,
Balaji
Hi,
I’m planing to attend SCJP exam in next month.
ASAP pls forward me SCJP dump. mail id: balaji.korangi69@gmail.com
I appriciate your swift response.
Thanks & Regards,
Balaji
Your comment is awaiting moderation.
Hi ,
Am planning to take SCJP 1.6 on August end or septemer start. It would be helpful if u can share ur dump articles with me.. pls snd to gopalkrishnan1984@gmail.com
Hi,
I want to give SCJP. Which scjp version should i give scjp 1.6 or scjp 1.5
Please tell me which Website should i refer for complete details
Also mail me the scjp 1.6 dumps at my email id
wewakepatil@gmail.com
im planning to give scjp…which version should i give, 1.5 or 1.6?? plz suggest….also can u plz email me the dumps and share your experience about how the exam is and what are the prerequisites for it……my email id is hansaparekh0105@gmail.com…plz do reply…waiting eagerly…….thank you!!
give 1.6 btw java 1.7 is out,
Plz…can any one send me d scjp 1.6 dumps on nagraj.humnabade@gmail.com..plz reply…thank u..waiting
planing to take SCJP 1.6 exam on second week of September 2011, could you pls send me dumps pls??
my id is:akashparekh23@gmail.com
thx in advance for your help!!
Regards
Akash
Can any one please send me SCJP 1.6 dumps…..
Thanks in advance.
Can any one please send me SCJP 1.6 exams dumps, on miskhanna_87@yahoo.co.in
Hi,
I am giving OCPJP in 4 weeks time can you please send me the dumps to ilww@live.co.uk.
Thank you.
Plz send me the dumps for scjp 1.6… waiting for your reply..
thanks in advance..
Please send me SCJP1.6 dumps,I am going to write exam in sept’11.
Please forward dump to my id dusa.suresh@gmail.com
Hi,
I want to write scjp 1.6 exam as soon as possible. pls send scjp 1.6 dumps to my mail my id is venkatesh1219@gmail.com
Please………can any one send me the SCJP 6 dumps on ramireddy.pagadala@gmail.com,i am going to give the exam on next month
kindly forward the latest dumps for scjp 1.6 to this email: 007jinu@gmail.com
can you please send me the latest SCJP 1.6 dumps?
Thanks in advance
can any one of you please send me the latest SCJP 1.6 dumps? my email id m.satyabhaskar@gmail.com
I am going to right the exam next week.. Please help me
Thanks in advance
Plz send me the dumps for scjp 1.6… waiting for your reply..
This is my Mail Id:tamilgv@gmail.com
Can you please send me the dumps for scjp 1.6… Thanks a lot for the favor
Please send me scjp 1.6 dumps for september 2011 my email id is
velocitysprakhar150@gmail.com
Can you please send me the scjp 1.6 dumps. I am planning to give in 1st week of october..
Thanks
Can you please send me the scjp 1.6 dumps. I am planning to give in 1st week of october
My e-mail id is : ritika.agwl@gmail.com
Thanks
Hi Dude,
can u pls send me the SCJP1.6 dumps.
Hi,
I’m planing to attend SCJP exam in next month.
ASAP pls forward me SCJP dump.
I appriciate your swift response.
Thanks & Regards
vishnuvardhan
E-mai:vishnuvardhan088@gmail.com
Can any one please send me the SCJP 1.6 to me @ karuna.tirupathi@gmail.com. Thanks in advance!
Hi dude please send more dumps to my mail id fazilsathak@gmail.com….
thanx..:):):)
Could any one please send me SCJP 1.6 exams dumps, on amitabha66@gmail.com
Hi All,
Can u plz send me the scjp 1.6 dumps.Since i am preparing for this to my mail id manzursayed@gmail.com
Can u plz send me the scjp 1.6 dumps.Since i am preparing for this to my mail id chetan.laddha@gmail.com
Hi,
Please send me SCJP 1.6 dumps to chetanladdha@gmail.com
Can you please send me SCJP 1.6 dumps, my email id is sandeepkrcr@gmail.com. Thank you.
I am taking SCJP 1.6 in Octber. Can you pls send dumps to my Id:amick_thomas@yahoo.com
Can u plz send me the scjp 1.6 dumps. i will applying for SCJP 1.6 next month .this is my mail id : laxminarshima2aug@gmail.com
plz send me scjp 1.6 dumps. my email id is daljeetsingh1987@rediff.com.
Hiiiiiiiiiiiiiiiiiii
Good Afternoon.
Can u plz send me the scjp 1.6 dumps. i will applying for SCJP 1.6 next month .this is my mail id : nagasuneetha.putti@gmail.com
Hi, I am also planning SCJP 1.6 in October, can anybody send me the dumps at prachi0204@gmail.com
Plz send me the latest dumps to my email- saurav.sunny12@gmail.com. Thanks in advance.
Hi,
plz send me latest dumps as i am going to take SCJP 1.6 next month.Thanks in advance.
Hi,
Please send me the SCJP Dumps. my email: tripathi_munmun@yahoo.co.in
Thx in advance
Hi,
Can you send me latest dump of SCJP1.6 Exam.I giving my SCJP 1.6 Exam on 4/10/2011.
send me SCJP 1.6 dumps
Hi,
Thnx fr d dumps as I cleared OCPJP with 96%….
Can I get dumps for SCJWCD(now 1Z0-858 “Java Enterprise Edition 5 Web Component Developer Certified Professional Exam”)?
If anybody having SCJWCD dumps…plz mail me on pkanawade7@gmail.com
Waiting for ur response..
Thnks…
Hello,
I am attempting SCJP in october. So please forward the dumps as soon as possible to my mail pranathi.laasya@gmail.com
Thnks….
Hi,
Please send me SCJP 1.6 dumps.
Thanks
Hi All,
I am planning for SCJP 1.6,next month.Can anyone pls send me the dumps to my mail id.
hemalatha.subbiah@gmail.com
Thanks,
Hema
Please send me the SCJP 1.6 dumps on my mail lahoti.ashish20@gmail.com …It will be very helpful…thanks in advance
hi this is vinay.plz do send me more dumps of scjp1.6 exam at vinay_chaturvedi@yahoo.in
Will u send me scjp 1.6 dumps earlier…. I have certification exam this month
g8 questions really enjoyed doing them …
if possible forward the dumps to me too ..
my email id is varun11114629@gmail.com
Hi,
I’m planing to attend SCJP exam in next month.
Can anyone pls send me the SCJP 1.6 dumps to my mail id.
007amarjeet@gmail.com
Thanks
Hi…
I want SCJP dumps send on email rkoshti17@gmail.com
Hi Everyone..
We all here for one thing… So, if I found any kind of dumps I will keep posting here.
Hope you all can do the same.
Thanks & Regards,
Raghu.J
Please send me scjp 1.6 dumps for september-octbr 2011 my email id is
chavan.komal@yahoo.co.in
Hi…
I want SCJP dumps send on email 901tapan@gmail.com
Hey,
Could you please send me the latest SCJP dumps for 1.6 on akoy.suresh@gmail.com
Thanks. Really appreciate it!
Hi this is Gourav. Please send me more SCJP dumps @ gourav_2606@yahoo.com. I shall be thankful to you.
Regards:
Gourav Malhotra
Hey,
Could you please send me the latest SCJP dumps for 1.6 on abhijit_124@yahoo.com
Thanks. Really appreciate it!
Hey,
i am planning to write scjp on oct 21.Could you please send me the latest SCJP dumps for 1.6 on harishkumar052@gmail.com
there is talk that dumps r changing.i want to know whether they r changed r not.anybody eho wrote xam recently in october.pls help me.its complusory fr me to clear xam in this month reply me on harishkumar052@gmail.com
can u pls say how many questions r there fr exam n how much is pass percentage.they r saying dumps changed is that a rumor ..pls reply
Can you please send me the recent Dumps…Thank you.
Hi,
please send me the latest dumps of SCJP 1.6
My email ID: ganathearchon@yahoo.com
Thanks in advance
Could you please send latest 1.6 scjp dumps at rajiv.srivastava01@gmail.com. Thanks in advance
Please send me the latest SCJP 1.6 dumps to ashwin.chandar@gmail.com. It will be of great help for me. Thank you very much in advance!
Could please send me the scjp1.6 dumps ?
My mail is lovesaiju@gmail.com
Thanks in advance.
Hey,
Could you please send me the latest SCJP dumps for 1.6 on mansurali2005@gmail.com
Thanks. Really appreciate it!
Hi,
please send me the latest dumps of SCJP 1.6
My email ID: murari552005@yahoo.com
Thanks in advance
Hi ,
Can you please send me the latest Dumps for SCJP 1.6 .
E-mail ID : adarshks6733@gmail.com
Thanks in Advance
hi, I am sitting for the exam on 12 november, if anybody have latest dumps then please share it to me.
Thanks.
Hello…my exam is scheduled on 22 of november can u please send me the dumps as quickly as possible….I really appreciate your work ….And Thank you in Advance…!!!!!
HI i m preparing for scjp can u send me the dumps. My exam is scheduled @ 2nd dec.2011 Please help me.
Hi guys i am planning to write SCJP this month end. Kindly give me dumps to prepare. Mail id: vidhyashankar.t@gmail.com
Hi,
Could you please scjp 1.6 latest dumps to ramesh1984@gmail.com
Thanks in advances!
Regards,
Ramesh
Hi,
i will be writing SCJp next month.Could anyone kindly send me d dumps!!!!mail id-eee.anish@gmail.com
Hi,
could someone send me SCJP Dumps to rtothaz@hotmail.com
thanks in advance
Regards
Ramzi
pl send me the dumps for scjp 1.6 exam…i’m writing it in the month of jan,2012….my id is nithiya17@gmail.com
Hi All,
please send me the latest dumps for scjp 1.6 exam…i’m writing it in the month of Dec,2011….my id is
nizam4truth@gmail.com
Thanks&Regard’s
Nizamuddin.
Hi all,
I m planning to write scjp on Dec 2011.Could someone please send me latest scjp1.6 dumps.
My mailid is: umasrr48@gmail.com
Thanks & Regards
Umasankar Reddy.P
Hi,
Can anybody send me latest dumps for SCJP 1.6 exam.
hi, u have a great work done here for all scjp aspirants
it would be nice if anybody could send me latest dumps on my
mail id: get2vrushal@gmail.com
Thanks,
Hi,
Please provide me the dumps for SCJP 1.6 …my mail id is mukund.kanabargi@gmail.com….Thanks in advance…
Hi,
Please provide me the dumps for SCJP 1.6. My mail is gama0057@hotmail.com.
Thanks in advance
Hi , Please mail me SCJP 6.0 dumps, have to take my exams next month. My mail id is suzane1703@gmail.com
Can you send me SCJP 6.0 dumps. My mail id : das.neelam@gmail.com.
Thank you
hi,
kindly share the SCJP 1.6 dumps to me. My mail id gaurav7infy@gmail.com
will be very thankful to you.
Thanks and Regards,
Gaurav..
Can you send me SCJP 6.0 dumps. My mail id : dadavig@gmail.com.
Thank you
hai,
kindly share the SCJP 1.6 Dumps to me.
My mail id is suggula.nandini@gmail.com
Thanks and Regards,
S.nandini
Can anyone please send me SCJP1.6 dumps to me?
My mail id is pinkpriya19@gmail.com
Hello, Kindly send me the SCJP 1.6 Dumps.. my email id : alekhya538@gmail.com. Thanks in advance for the needful!!!
Could anyone please share SCJP1.6 dumps to me?
My email id is psagar.1985@gmail.com
Thanks and regards,
Sagar
I am eager to write scjp.. plz guide me.. i dont know the procedure too.. Plz help me..
Can anyone please send me SCJP1.6 dumps to me?
My mail id is sandeep1712@gmail.com
Hello, Kindly send me the SCJP 1.6 Dumps.. my email id : nandhakumar.bism@gmail.com. Thanks in advance for the needful!!!
Please send the dumps to me
Could anyone please share SCJP1.6 dumps to me?
Could you please send me the latest SCJP 1.6 dumps?mail id:karthikn153@gmail.com
Hi,
Please send me SCJP 1.6 dumps on shukla.preet@gmail.com. I am planning to give exam within two weeks.
Thanks,
Hi,
Please share the SCJP 1.6 dumps to me. My mail id is iamkamath@gmail.com
I will be very thankful to you.
Thanks and Regards,
Ram
Could you please send me the latest SCJP 1.6 dumps? thanks
Hi,
Can some one send me dump to my email:aaba1aaba@gmail.com
Thanks!
Gaurv
Hi,
could you please send the dumps to cruskydaemons@gmail.com.
am planning to take exam in March.
Thanks
Hi,
Kindly send me the SCJP 1.6 dumps at richaran@gmail.com.
Thanks a lot in advance.
Regards,
Richa
kindly share the SCJP 1.6 dumps to me. My mail id shantanughsh@aol.com
TIA
can any one provide me the scjp 1.6 dumps
kindly share the SCJP 1.6 dumps to me. My mail id : dineshbnmit@gmail.com
Thanks in Advance
Wish U A Very Happy New Year…
It would be great and helpfull to me if some one share latest SCJP 1.6 dumps.
Hii please send me the latest SCJP 1.6 Dumps.. I’m taking the exam shortly..
Thanks…
Hi Please send me the latest SCJP 1.6 DUmps to haibharath@rediffmail.com
Hi,
Please send me SCJP 1.6 dumps.
Thanks
Hi,
Please send me SCJP 1.6 dumps. My mail id is lakshmimalar@gmail.com
Thanks
Hii please send me the latest SCJP 1.6 Dumps.. I’m taking the exam shortly..
Thanks…
please send me the latest ocjp 1.6 dumps.i am thinking to take the exam as early as possible.
thanks in advance
Hii please send me the latest SCJP 1.6 Dumps.. I’m taking the exam shortly..
Thanks……
Hi,Can u send me the scjp1.6 dumps to alkkumar531@gmail.com ..plzzzzzzzzzzzzzzzzzzzzzzz……
Hi Friends,
Can any one send me the SCJP 1.6 dumps.
Hi Friends,
Can any one send me the SCJP 1.6 dumps. to bsrinu_b@yahoo.com. plzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
Hi … Could you please send me scjp 1.6 dumps at rite2eesha@yahoo.co.in . Thanks in advance
Hi,
could you please send the dumps to faisalibrahim87@gmail.com.
Thanks
Hi can anyone plz send me the actual ocjp/scjp 1.6 dumps today itself…its urgent.
Thanks.
My email id is jisz_2688@yahoo.com
Hi,
Please send me scjp dumps to email id: dhivya0987@gmail.com
can any one send me scjp/ocjp dumps to my email id lvsurfriend@gmail.com
Hi,
Could you please mail me the scjp 1.6 dumps to the following mail id: cindrella.tink@gmail.com
hi pls send latest scjp dump…
peer.pps@gmail.com
Thanks & Regards,
Peer.P
Please send me the scjp dumps for feb 2012 to ajit.moha@gmail.com
Hi,
Please send me SCJP 1.6 dumps. My mail id is chiragch2008@gmail.com
Thanks
Hi,
m planning to give exam in cuming feb 2012.please send me some latest dumps on chawla.saloni24@gmail.com
Hi. I wish to take scjp 6.0 in a couple of months. Could u please send me the latest dumps to my mail
chaitanya07131a0547@gmail.com at the earliest?
Thanks in advance
Hi
am planning to write scjp exam plz send latest scjp dumps to keerthi.257@gmail.com
Hi
am planning to write scjp exam on march 1stwk of 2012 plz send latest scjp dumps to saidesh367@gmail.com
Thanks & Regards,
Saidesh Chowdary
friends ………am preparing to scjp exam. if any one get the dumps send me plzzzzzzzzzzzzz…
Hi … Could you please send me scjp 1.6 dumps at vijaynanekar@gmail.com. Thanks in advance
Hi,
I am planing to appear SCJP1.6 exams in 28th Feb’2012. Could you please provide me dumps.
It would be great.
Thanks,
Manish
Hi,
Can someone plz send me latest SCJP 1.6 dumps.My email Id is shantanu.mishra00@gmail.com.
Thanks.
Shantanu Mishra
Hi,
Please share latest dumps to me as well. Thanks in Advance.
mail id: Mahesh.Jaganathan@gmail.com
HI ..
I am appearing for SCJP/OCJP exam VERY soon..and i need Latest DUMPS for that…pls send it to me to My email ID: prasannavenkatesh.btech@gmail.com….
THANK U IN ADVANCE…
Hi Prasanna,
Please share latest dumps to me as well. Thanks in Advance.
mail id: Mahesh.Jaganathan@gmail.com
Hi i have to do scjp certification within this month for my , so friends please kindly help me in sharing dumps
Thanks,
Tinku
Hi,
I need to take SCJP on feb 26th. so please mail me the latest dumps. It ll be great help.
Thanks in advance.
Hi I have to write my certification exam next month.So kindly share the dumps if you have..It will be helpful to me at this point of time..
Thanks in advance
mail id:
shanthi1031@gmail.com
Hello Every One,
I am also planing to give the SCJP 1.6 exam. I have kathey sierra Book. I want some Dumps to prepare exam.
If any one having the links or Dumps then can you please send me.
My Email Id is: mayurr87@gmail.com
Thanks In Advance….:-)
Hi,
I need to take latest SCJP. So please mail me the latest dumps. It ll be great help.
Thanks in advance.
hi i m preparing for ocjp 1.6 pls send me dumps to get pass in ocjp.
hi folks lets share our latest dumps with each other as Mahesh said..i sent my dumps to four ppl..
if we share our dumps it will be really helpful… thank u in advance… rest of them will be getting their dumps
very soon from here… i got one from this Website…
can you pls send the dumps my id karthi3636@gmail.com Thanks in advance
can any one send me scjp/ocjp 1.6 dumps to my email id venkatesh.8125L@gmail.com
Please send me the latest dumps am going to write the exam tomorrow
Please send me SCJP 1.6 dumps : ezhilsky@gmail.com
Please Can u send the latest dumps to me. I am taking the exam after a week.
latest dumps pls.ajit.moha@gmail.com
Pls send to my mail… dsdyanashine@gmail.com
Mail me the dumps to soumyasmruti@gmail.com
i m preparing for ocjp se 6.0 plz provide me dumps if anybody having….plz forward me on harshitupadhyay30@gmail.com ….thanx in advance plz guide me….
plz send me scjp dumps to my mail
Please send me the latest SCJP 1.6 dumps to cfmx.kviswa@gmail.com
Please send me Dumps for 1.6 SCJP.
Hi can u please send me the scjp 1.6 dumps, to help me prepare for my exam
my mail id : monishaganesh@ymail.com
thanks
Can you please send the SCJP 1.6 dumps to mail maild please karthi@3636@gmail.com
Thanks in advance!!!!
Can you please send the SCJP 1.6 dumps to mail maild please kurian.jack@gmail.com
Thanks in advance!!!!
Hi,
Please send the scjp 1.6 (310-065 or 310-066) dumps in pdf format.
My Mailid is : selvaji_mca@rediffmail.com
Thanks
Selvaganapathy.c
hi ,
can u plz send me scjp dumps @ dexterous.gal@gmail.com
thanx
hello sir/madam,
please send me scjp1.6 dumps to my mail,i am going to take the exam in the next month.
thanks and regards,
Divya Bitla
Hi,
will you please mail me latest OCJP JDK 1.6 dumps on pratik.barkade@gmail.com.
Thanking you in advance
Plzz send me scjp latest dump i m going to give exam next sunday…plzz
hi please send me latest scjp dump on bakulsaini@gmail.com ASAP please as i hav exam on next sunday
Can you please send the SCJP 1.6 dumps to mail maild please siddu1790@gmail.com
Thanks in advance!!!!
Hi,
Can someboby plz share the latest scjp 1.6 dumps at my email: aditya2824@yahoo.com.
I’m planning to give the xam by March’12.
Thanks in advance!
Please mail me the latest SCJP dumps on deevaa.jain@gmail.com!
Could you please send me the latest Dumps to my below ID. I am planning to write Oracle SCJP1.6
ravilashman@gmail.com
Hey.. nice info.. thanks.
Can you please send me scjp dumps @ nitin.singla.gndu@gmail.com
Thanks in advance.
Can u please send me dumps on my email id – pooja_gupta4@yahoo.com
Regards,
Pooja
plz send me more scjp dumps on annupriya.priya@gmail.com.. thanks..
Hii please send me the latest SCJP 1.6 Dumps.. I’m taking the exam shortly..
Thanks in advance
prasanna Please mail me the latest SCJP dumps on dheerapalle@gmail.com
plz send me scjp dumps.i will very thankfull to you ………….
plz send me scjp dumps on saurabhmits20@gmail.com . i will write scjp next month
Please send me the dumps too……my email id is :prachi.wakpaijan@gmail.com
I am planning to give OCJP/SCJP exam on 20th April 2012 so please provide me latest dumps
Can anyone please mail me the latest dump at : coolamita@gmail.com
Hi,
Please mail me latest SCJP dumps on prachi0204@gmail.com
Hi,
Please send me latest SCJP dumps on ranjeshforu@gmail.com
Thanks in Advance.
Regards
Ranjesh
Hi please could you send me the latest SCJP dumps on gaurvijain@hotmail,com
Can you please send all SCJP 1.6 dumps to the following mail id
manivenkat18@gmail.com
Thanks in advance
I am planning to give SCJP exam on April 2012 , so please please send me latest SCJP dumps ASAP.
Thanks in Advance
Kindly , send me latest dums of scjp 1.6 as i have to gtive exam in the end of the April.
Hi,
Please share the dumps for SCJP 1.6 exam to karthik.happy@gmail.com
Thanks in Advance!!!
-Karthik
please send SCJP 1.6 dumps..
Thanks in advance.
Hi..I am planning to take SCJP1.6 exam April 2012. Can any one send latest dumps to following mail
saipratap.m@gmail.com
Hii………I am planning to take the scjp 1.6 in the month of April.Can anyone please send me the latest valid dumps to my email id gangulydada06@gmail.com.
Thanks in advance.
Hi,
I want to appear in SCJP1.6 exam so, its my request please anybody share the dumps for SCJP 1.6 exam to – prakashbhandari.88@gmail.com
thanks
Prakash Bhandari
Please share SCJP 1.6 dumps to kanagarajaa@gmail.com
Hii
I am planning to write the SCJP 1.6 exam in d month of April.I was looking for d latest dumps.If somebody have those could u plz share.
Thanks in advance.
Hello frnds…….
I am planning to give OCJP/SCJP exam on 18 th of this month…… so please provide me latest dumps for scjp 1.6…….my email id is::: manishoist111@gmail.com
THNKS in advance…..
HI, Kindly share dumps.
Thanks in advance.
Hi,
I am planing to go through SCJP for JDK1.6.
Please can anyone send me SCJP dumps.
It would be very helpfull for me.
Thanks in advance.
mail me @–
rajmonu.2629@gmail.com
Hi , It would be great that any one share latest dumps on ocpjp.. pLZ send it to dhivyaveerasekaran@gmail.com
Hii..
I am planning to take the Scjp 1.6 exam in the month of April.Can anyone over here share the latest dumps wid me as that would really help me a lot to prepare for the exam.My mail id is gangulydada06@gmail.com,
please if anyone have those send it to me.
Thanks in advance.
Hi I wanna take scjp 1.6 …can u pls mail me the dump @ sahanakakolu@gmail.com
hiii….
your site is very good. it’s help a lot.. these question are very helpfull in preparing scjp test… will you please send me more dumps at amitverma0511@gmail.com
thank you
Hi,
Could anyone please send me scjp 1.6 latest dumps as soon as possible? I am writing exam in a week.
Thanks a lot in advance.
Hareesh
hareeshsarmay@gmail.com
Can you please send me the latest Dump for OCJP to biti_05@yahoo.com
Please send me the SCJP 1.6 dumps to my email-id. I am planning to write the exam in june 2012. Thanks in advance.
My email id is vibhor1403@gmail.com.
Please could you provide me the scjp dumps for may. i need to take the exam so could you please provide the dumps for the month of may. My email id is abhijitnair10@gmail.com
thanks in advance
Please send me the latest dumps am going to write the exam next month….
thanx in advance folks….
my is : chintu.golu@yahoo.com
Hii..
I am planning to take the Scjp 1.6 exam in the month of April.Can anyone over here share the latest dumps wid me as that would really help me a lot to prepare for the exam.My mail id is maharshijha@hotmail.com,
please if anyone have those send it to me.
Thanks in advance.
Hi i’m going to write scjp(1.6) exam on next month . If any one hav d latest dumps pls send me .
Thanks alot in advance.
My id : nareshsnk619@gmail.com
Hi i’m going to write scjp(1.6) exam on next month . If any one hav d latest dumps pls send it to me .
Thanks alot in advance.
My id : nareshsnk619@gmail.com
Can anyone please mail me the latest dump at: manuprabhab@gmail.com
Hi i’m going to write scjp(1.6) exam next month . If any one hav d latest dumps pls send it to me .
Thanks alot in advance.
My id : madhumita.jaiswal@gmail.com
hi
i am going to write scjp exam. can u pls send the recent dumps to my mail id.
thanks.
hello all…
Can u please mail me the SCJP 1.6 dumps to my email id kallianpur.vinay@gmail.com? i am planning to write the exam in june..
Hi can u please mail me the latest SCJP 1.6 dumps to my mail id
my mail id is: sriman.r@gmail.com
Hai.. if any one got latest dumps jus send it to me..
my mail id :suvanika2009@gmail.com
I need to clear the SCJP 1.6. Please send me the dumps for it. My email Id is
pallav.johari@gmail.com
Hi,
I am preparing for SCJP 1.6…can u plz mail me latest dumps on my id – ashish.bania@gmail.com
Thanx in advance.
Hi All,
I am planning to give OCJP in June 2012 can any one please mail me the latest dumps at vasu_choubey@yahoo.com
Thanks in advance.
I am going to write the SCJP exam next month.
Can anyone please mail the latest dumps?
bharath.phatak@gmail.com
hi,
can anyone please send me the latest SCJP 1.6 dumps…i am planning to take the exam in end of this month….
hi,
can anyone please send me the latest SCJP 1.6 dumps…i am planning to take the exam in end of this month…. my mail id is sunilprasath.e@gmail.com…
Pls send me latest SCJP 1.6 Dumps.
reply pls.
Could you please send me the latest dumps to my email id —–> rajshripawar18nov@gmail.com?
Could you please send me the latest dumps to my below email id?
Heyaa i have the SCJP Exam in coming month i need 1.6 Dumps and whats the hit ratio can anyone guide me?
i am planning to write ocjp can someone send me ocjp dumps.
thanks in advance.
Hi can u please mail me the latest SCJP 1.6 dumps to my mail id
My mail id : yohandf@gmail.com
hello all…
Can u please mail me the SCJP 1.6 dumps to my email id sanjul.abhishek@gmail.com?
plzzzzzzz
Hi can u please mail me the latest SCJP 1.6 dumps to my mail id
My mail id :
bsuppalapati@gmail.com
Hi,
can u please mail me the latest SCJP 1.6 dumps to my mail id
My mail id : piyush1583@yahoo.com
Thanks in advance.
Can u send me these dumps to my gmail account, thankyou