Wednesday 24 June 2015

Oracle Certified Associate, Java SE 7 Programmer I (1Z0-803) - OCA 7 Dumps


EXAM DETAILS:
  • Associated Certifications: Oracle Certified Associate, Java SE 7 Programmer
  • Exam Number: 1Z0-803
  • Exam Product Version: Java SE
  • Duration: 120 minutes
  • Number of Questions: 70
  • Passing Score: 63% 
  • format: Multiple Choice
SYLLABUS:
Java Basics
  • Define the scope of variables
  • Define the structure of a Java class
  • Create executable Java applications with a main method
  • Import other Java packages to make them accessible in your code
Working With Java Data Types
  • Declare and initialize variables
  • Differentiate between object reference variables and primitive variables
  • Read or write to object fields
  • Explain an Object's Lifecycle (creation, "dereference" and garbage collection)
  • Call methods on objects
  • Manipulate data using the StringBuilder class and its methods
  • Creating and manipulating Strings
Using Operators and Decision Constructs  
  • Use Java operators
  • Use parenthesis to override operator precedence
  • Test equality between Strings and other objects using == and equals ()
  • Create if and if/else constructs
  • Use a switch statement
Creating and Using Arrays
  • Declare, instantiate, initialize and use a one-dimensional array
  • Declare, instantiate, initialize and use multi-dimensional array
  • Declare and use an ArrayList
Using Loop Constructs
  • Create and use while loops
  • Create and use for loops including the enhanced for loop
  • Create and use do/while loops
  • Compare loop constructs
  • Use break and continue  
Working with Methods and Encapsulation
  • Create methods with arguments and return values
  • Apply the static keyword  to methods and fields  
  • Create an overloaded method
  • Differentiate between default and user defined constructors
  • Create and overload constructors
  • Apply access modifiers
  • Apply encapsulation principles to a class
  • Determine the effect upon object references and primitive values when they are passed  into methods that change the values
Working with Inheritance
  • Implement inheritance
  • Develop code that demonstrates the use of polymorphism
  • Differentiate between the type of a reference and the type of an object
  • Determine when casting is necessary
  • Use super and this to access objects and constructors
  • Use abstract classes and interfaces
Handling Exceptions
  • Differentiate among checked exceptions, RuntimeExceptions and Errors
  • Create a try-catch block and determine how exceptions alter normal program flow
  • Describe what Exceptions are used for in Java
  • Invoke a method that throws an exception
  • Recognize common exception classes and categories
QUESTIONS:

QUESTION 1
Given the code fragment:
int [] [] array2D = {{0, 1, 2}, {3, 4, 5, 6}};
system.out.print (array2D[0].length+ "" );
system.out.print(array2D[1].getClass(). isArray() + "");
system.out.println (array2D[0][1]);
What is the result?
A. 3false1
B. 2true3
C. 2false3
D. 3true1
E. 3false3
F. 2true1
G. 2false1
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
Explanation: The length of the element with index 0, {0, 1, 2}, is 3. Output: 3 The element with index 1, {3, 4, 5,
6}, is of type array. Output: true The element with index 0, {0, 1, 2} has the element with index 1: 1. Output: 1


QUESTION 2
View the exhibit:
public class Student {
public String name = "";
public int age = 0;
public String major = "Undeclared";
public boolean fulltime = true;
public void display() {
System.out.println("Name: " + name + " Major: " + major);
}
public boolean isFullTime() {
return fulltime;
}
}
Given:
public class TestStudent {
public static void main(String[] args) {
Student bob = new Student ();
Student jian = new Student();
bob.name = "Bob";
bob.age = 19;
jian = bob;
jian.name = "Jian";
System.out.println("Bob's Name: " + bob.name);
}
}
What is the result when this program is executed?
A. Bob's Name: Bob
B. Bob's Name: Jian
C. Nothing prints
D. Bob's name
Correct Answer: B
Section: (none)
Explanation
Explanation/Reference:
Explanation: After the statement jian = bob; the jian will reference the same object as bob.



QUESTION 3
Given the code fragment:
String valid = "true";
if (valid)
{
System.out.println ("valid");
}
else
{
System.out.println ("not valid");
}
What is the result?
A. Valid
B. not valid
C. Compilation fails
D. An IllegalArgumentException is thrown at run time
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
Explanation: In segment 'if (valid)' valid must be of type boolean, but it is a string.
This makes the compilation fail.


QUESTION 4
Given:
public class ScopeTest
{
int z;
public static void main(String[] args){
ScopeTest myScope = new ScopeTest();
int z = 6;
System.out.println(z);
myScope.doStuff();
System.out.println(z);
System.out.println(myScope.z);
}
void doStuff() {
int z = 5;
doStuff2();
System.out.println(z);
}
void doStuff2()
{
z = 4;
}
}
What is the result?
A. 6 5 6 4
B. 6 5 5 4
C. 6 5 6 6
D. 6 5 6 5
Correct Answer: A
Section: (none)
Explanation
Explanation/Reference:
Explanation: Within main z is assigned 6. z is printed. Output: 6 Within doStuff z is assigned 5.DoStuff2 locally
sets z to 4 (but MyScope.z is set to 4), but in Dostuff z is still 5. z is printed. Output: 5
Again z is printed within main (with local z set to 6). Output: 6 Finally MyScope.z is printed. MyScope.z has
been set to 4 within doStuff2(). Output: 4


QUESTION 5
Which two are valid instantiations and initializations of a multi dimensional array?
A. int [] [] array 2D = { { 0, 1, 2, 4} {5, 6}};
B. int [] [] array2D = new int [2] [2];
array2D[0] [0] = 1;
array2D[0] [1] = 2;
array2D[1] [0] = 3;
array2D[1] [1] = 4;
C. int [] [] [] array3D = {{0, 1}, {2, 3}, {4, 5}};
D. int [] [] [] array3D = new int [2] [2] [2];
array3D [0] [0] = array;
array3D [0] [1] = array;
array3D [1] [0] = array;
array3D [0] [1] = array;
E. int [] [] array2D = {0, 1};
Correct Answer: BD
Section: (none)
Explanation
Explanation/Reference:
Explanation: In the Java programming language, a multidimensional array is simply an array whose
components are themselves arrays.


QUESTION 6
An unchecked exception occurs in a method dosomething()
Should other code be added in the dosomething() method for it to compile and execute?
A. The Exception must be caught
B. The Exception must be declared to be thrown.
C. The Exception must be caught or declared to be thrown.
D. No other code needs to be added.
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
Explanation: Because the Java programming language does not require methods to catch or to specify
unchecked exceptions (RuntimeException, Error, and their subclasses), programmers may be tempted to write
code that throws only unchecked exceptions or to make all their exception subclasses inherit from
RuntimeException. Both of these shortcuts allow programmers to write code without bothering with compiler
errors and without bothering to specify or to catch any exceptions. Although this may seem convenient to the
programmer, it sidesteps the intent of the catch or specify requirement and can cause problems for others
using your classes.


QUESTION 7
Given the code fragment:
int b = 4;
b -- ;
System.out.println (-- b);
System.out.println(b);
What is the result?
A. 2 2
B. 1 2
C. 3 2
D. 3 3
Correct Answer: A
Section: (none)
Explanation
Explanation/Reference:
Explanation: Variable b is set to 4.
Variable b is decreased to 3.
Variable b is decreased to 2 and then printed. Output: 2 Variable b is printed. Output: 2


QUESTION 8
Given the code fragment:
interface SampleClosable
{
public void close () throws java.io.IOException;
}
Which three implementations are valid?
A. public class Test implements SampleCloseable {
public void close() throws java.io.IOException {
/ / do something
}
}
B. public class Test implements SampleCloseable {
public void close() throws Exception {
/ / do something
}
}
C. public class Test implements SampleCloseable {
public void close() throws java.io.FileNotFoundException { / / do something
}
}
D. public class Test extends SampleCloseable {
public void close() throws java.IO.IOException {
/ / do something
}
}
E. public class Test implements SampleCloseable {
public void close()
/ / do something
}
}
Correct Answer: ACE
Section: (none)
Explanation
Explanation/Reference:
Explanation: A: Throwing the same exception is fine.
C: Using a subclass of java.io.IOException (here java.io.FileNotFoundException) is fine
E: Not using a throw clause is fine.


QUESTION 9
Given the code fragment:
Int [] [] array = {{0}, {0, 1}, {0, 2, 4}, {0, 3, 6, 9}, {0, 4, 8, 12, 16}};
Systemout.printIn(array [4] [1]);
System.out.printIn (array) [1][4]);
int [] [] array = {{0}, {0, 1}, {0, 2, 4}, {0, 3, 6, 9}, {0, 4, 8, 12, 16}};
System.out.println(array [4][1]);
System.out.println(array) [1][4]);
What is the result?
A. 4 Null
B. Null 4
C. An IllegalArgumentException is thrown at run time
D. 4 An ArrayIndexOutOfBoundException is thrown at run time
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
Explanation: The first println statement, System.out.println(array [4][1]);, works fine. It selects the element/array
with index 4, {0, 4, 8, 12, 16}, and from this array it selects the element with index 1,4.
Output: 4
The second println statement, System.out.println(array) [1][4]);, fails. It selects the array/element with index 1,
{0, 1}, and from this array it try to select the element with index 4. This causes an exception.
Output:Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 4



QUESTION 10
Given:
public class DoCompare1 {
public static void main(String[] args) {
String[] table = {"aa", "bb", "cc"};
for (String ss: table) {
int ii = 0;
while (ii < table.length) {
System.out.println(ss + ", " + ii);
ii++;
}
}
How many times is 2 printed as a part of the output?
A. Zero
B. Once
C. Twice
D. Thrice
E. Compilation fails.
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
Explanation: The for statement, for (String ss: table), is executed one time for each of the three elements in
table. The while loop will print a 2 once for each element.
Output:
aa, 0
aa, 1
aa, 2
bb, 0
bb, 1
bb, 2
cc, 0
cc, 1
cc, 2


QUESTION 11
Given:
import java.io.IOException;
public class Y
{
public static void main(String[] args) {
try {
doSomething();
}
catch (RuntimeException e) {
System.out.println(e);
}
}
static void doSomething()
{
if (Math.random() > 0.5)
{
throw new IOException();
}
throw new RuntimeException();
}
}
Which two actions, used independently, will permit this class to compile?
A. Adding throws IOException to the main() method signature
B. Adding throws IOException to the doSoomething() method signature
C. Adding throws IOException to the main() method signature and to the dosomething() method
D. Adding throws IOException to the dosomething() method signature and changing the catch argument to
IOException
E. Adding throws IOException to the main() method signature and changing the catch argument to
IOException
Correct Answer: CD
Section: (none)
Explanation
Explanation/Reference:
Explanation: The IOException must be caught or be declared to be thrown. We must add a throws exception to
the doSomething () method signature (static void doSomething() throws IOException).
Then we can either add the same throws IOException to the main method (public static void main(String[] args)
throws IOException), or change the catch statement in main to IOException.


QUESTION 12
Given:
lass X
{
String str = "default";
X(String s)
{
str = s;
}
void print ()
{
System.out.println(str);
}
public static void main(String[] args)
{
new X("hello").print();
}
}
What is the result?
A. hello
B. default
C. Compilation fails
D. The program prints nothing
E. An exception is thrown at run time
Correct Answer: A
Section: (none)
Explanation
Explanation/Reference:
Explanation: The program compiles fine.
The program runs fine.
The output is: hello


QUESTION 13
Given:
public class SampleClass
{
public static void main(String[] args)
{
AnotherSampleClass asc = new AnotherSampleClass();
SampleClass sc = new SampleClass();
// TODO code application logic here
}
}
class AnotherSampleClass extends SampleClass
{
}
Which statement, when inserted into line "// TODO code application logic here ", is valid change?
A. asc = sc;
B. sc = asc;
C. asc = (object) sc;
D. asc = sc.clone ()
Correct Answer: B
Section: (none)
Explanation
Explanation/Reference:
Explanation: Works fine.


QUESTION 14
Given the code fragment:
System.out.println("Result: " + 2 + 3 + 5);
System.out.println("Result: " + 2 + 3 * 5);
What is the result?
A. Result: 10
Result: 30
B. Result: 10
Result: 25
C. Result: 235
Result: 215
D. Result: 215
Result: 215
E. Compilation fails
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
Explanation: First line:
System.out.println("Result: " + 2 + 3 + 5);
String concatenation is produced.
Second line:
System.out.println("Result: " + 2 + 3 * 5);
3*5 is calculated to 15 and is appended to string 2. Result 215.
The output is:
Result: 235
Result: 215
Note #1:
To produce an arithmetic result, the following code would have to be used:
System.out.println("Result: " + (2 + 3 + 5));
System.out.println("Result: " + (2 + 1 * 5));
run:
Result: 10
Result: 7
Note #2:
If the code was as follows:
System.out.println("Result: " + 2 + 3 + 5");
System.out.println("Result: " + 2 + 1 * 5");
The compilation would fail. There is an unclosed string literal, 5", on each line.


QUESTION 15
Which code fragment is illegal?
A. class Base1 {
abstract class Abs1 { }}
B. abstract class Abs1 {
void doit () { }}
C. class Basel {
abstract class Abs1 extends Basel {
D. abstract int var1 = 89;
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
Explanation: The abstract keyword cannot be used to declare an int variable.
The abstract keyword is used to declare a class or method to be abstract[3]. An abstract method has no
implementation; all classes containing abstract methods must themselves be abstract, although not all abstract
classes have abstract methods.


QUESTION 16
Given the code fragment:
int a = 0;
a++;
System.out.println(a++);
System.out.println(a);
What is the result?
A. 1
2
B. 0
1
C. 1
1
D. 2
2
Correct Answer: A
Section: (none)
Explanation
Explanation/Reference:
Explanation: The first println prints variable a with value 1 and then increases the variable to 2.


QUESTION 17
Given:
public class x
{
public static void main (string [] args)
{
String theString = "Hello World";
System.out.println(theString.charAt(11));
}
}
What is the result?
A. There is no output
B. d is output
C. A StringIndexOutOfBoundsException is thrown at runtime
D. An ArrayIndexOutOfBoundsException is thrown at runtime
E. A NullPointException is thrown at runtime
F. A StringArrayIndexOutOfBoundsException is thrown at runtime
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
Explanation: There are only 11 characters in the string "Hello World". The code theString.charAt(11) retrieves
the 12th character, which does not exist. A StringIndexOutOfBoundsException is thrown.
Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range:


QUESTION 18
Given a java source file:
class X
{
X ()
{
}
private void one ()
{
}
}
public class Y extends X
{
Y ()
{
}
private void two ()
{
one();
}
public static void main (string [] args)
{
new Y().two ();
}
}
What changes will make this code compile?
A. adding the public modifier to the declaration of class X
B. adding the protected modifier to the X() constructor
C. changing the private modifier on the declaration of the one() method to protected
D. removing the Y () constructor
E. removing the private modifier from the two () method
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
Explanation: Using the private protected, instead of the private modifier, for the declaration of the one() method,
would enable the two() method to access the one() method.


QUESTION 19
Given:
#1
package handy.dandy;
public class KeyStroke {
public void typeExclamation() {
System.out.println("!")
}
}
#2
package handy; /* Line 1 */
public class Greet { /* Line 2 */
public static void main(String[] args) { /* Line 3 */
String greeting = "Hello"; /* Line 4 */
System.out.print(greeting); /* Line 5 */
Keystroke stroke = new Keystroke; /* Line 6 */
stroke.typeExclamation(); /* Line 7 */
} /* Line 8 */
} /* Line 9 */
What three modifications, made independently, made to class greet, enable the code to compile and run?
A. Line 6 replaced with handy.dandy.keystroke stroke = new KeyStroke ( );
B. Line 6 replaced with handy.*.KeyStroke = new KeyStroke ( );
C. Line 6 replaced with handy.dandy.KeyStroke Stroke = new handy.dandy.KeyStroke();
D. import handy.*; added before line 1
E. import handy.dandy.*; added after line 1
F. import handy.dandy,KeyStroke; added after line 1
G. import handy.dandy.KeyStroke.typeException(); added before line 1
Correct Answer: CEF
Section: (none)
Explanation
Explanation/Reference:
Explanation: Three separate solutions:
C: the full class path to the method must be stated (when we have not imported the package)
D: We can import the hold dandy class
F: we can import the specific method


QUESTION 20
Given:
String message1 = "Wham bam!";
String message2 = new String("Wham bam!");
if (message1 == message2)
System.out.println("They match");
if (message1.equals(message2))
System.out.println("They really match");
What is the result?
A. They match
They really match
B. They really match
C. They match
D. Nothing Prints
E. They really match
They really match
Correct Answer: B
Section: (none)
Explanation
Explanation/Reference:
Explanation: The strings are not the same objects so the == comparison fails. See note #1 below. As the value
of the strings are the same equals is true. The equals method compares values for equality.
Note: #1 ==
Compares references, not values. The use of == with object references is generally limited to the following:
Comparing to see if a reference is null.
Comparing two enum values. This works because there is only one object for each enum constant.
You want to know if two references are to the same object.



1 2 345 6 7

176 comments:

  1. want OCJP SE 7 Dumps..if u hav plz main at websitemakers.in@gmail.com.Thanks in advance

    ReplyDelete
  2. Any one have OCA 1z0-803 exam question please mail me at raushanmmahasethrkm@gmail.com

    ReplyDelete
  3. public class SampleClass {
    public static void main(String[] args) {
    AnotherSampleClass asc = new AnotherSampleClass(); SampleClass sc = new SampleClass();
    sc = asc;
    System.out.println("sc: " + sc.getClass());
    System.out.println("asc: " + asc.getClass());
    }}
    class AnotherSampleClass extends SampleClass {
    }
    What is the result?
    A. sc: class Object
    asc: class AnotherSampleClass
    B. sc: class SampleClass
    asc: class AnotherSampleClass
    C. sc: class AnotherSampleClass
    asc: class SampleClass
    D. sc: class AnotherSampleClass
    asc: class AnotherSampleClass

    ReplyDelete
  4. Hi, there are only 20 questions, and the page 2 and 3 cannot be accesed

    ReplyDelete
  5. Hi Hasan,
    You can now access the page 2 and 3. And also added 83 more questions to the blog, go through it.

    Thank you:)

    ReplyDelete
    Replies
    1. Hi sandeep,
      Are these Questions enough to clear the exam ??

      Delete
    2. I cant access the next pages.! got exam tomorrow. Help me out admin..!

      Delete
  6. Are these questions sufficient to clear the exams? Next week I am planning to give exam. Please reply.

    ReplyDelete
    Replies
    1. Hi Arpit and Sumanth,

      Surely these questions will be enough to pass the Java 7 Programmer I (1Z0-803) certification exams, provided you execute and understand all the given questions. I will not assure that you will be getting the exact questions, but sure that will be getting similar questions in the exam.

      Please provide your experience and feedback once you write your exam.

      Thank you.:)

      Delete
    2. Hi Sandeep,

      I want dumps of OCJP 1.7 (1Z0-804).
      Could you please mail me that at shefalijain169@gmail.com.

      Thanks in advance

      Delete
  7. Hi Sandeep,
    Question 47 .... will not print anything because the StringBuilder has "world" instead of "World". Just a case change. If it had caps "W", it would print "they really match". SB function toString, will enable to compare the content.
    Let me know if that makes sense.

    ReplyDelete
  8. im sorry but is question 6 's answer right ??

    the answer is C , but there is D in book.

    which is true ??

    ReplyDelete
    Replies
    1. yes i have same doubt but maybe D) option is correct because we dont need to explicitly throw runtime exceptions ,jvm will implicitly call default catch ..!

      Delete
  9. M planning to give exam day after tomorrow.. Please provide me full access to all pages of the blog containing dumps..

    ReplyDelete
    Replies
    1. Hi Shivani,

      In the blog all the pages are public, there is no restriction and can be accessed by any one. Please practice(execute) all the questions given.

      Good luck for your Exam.

      Delete
  10. Hi Sandeep:
    Are you planning to take 1z0-804 soon? I attempted mine today but failed with 51%. $350 went down the drain. :-(
    I am hoping if you plan to take soon, then we can benefit from each other's knowledge.

    I have not taken 803 yet. For some reason, i went for 804 first.

    ReplyDelete
  11. @shivani:
    Best of luck and please do share your experience. I have to take 803 too but i am too worried about losing the money if i fail. I need help.

    ReplyDelete
  12. hi, I planned to write OCA Exam on November 28th, 2015. I have prepared from Sierra K., Bates B. - OCA OCP Java SE 7 Programmer I & II Study Guide - 2015 Book. But still I am having some confusion whether I can easily pass the exam. Please let me know that these dumps (Questions and answers ) given in this site are sufficient to pass or not. Thanks in Advance.

    ReplyDelete
    Replies
    1. Hi do you have some material or book for exam?? It would be great help for me.

      Delete
  13. Hi, could I access the page 2-7...please.

    ReplyDelete
  14. I can access the page 2-7 just after published the last comment, but cannot access again now..

    ReplyDelete
    Replies
    1. Hi Tindy Chu,
      Should not be any problem in accessing any pages in the blog.

      Delete
  15. This comment has been removed by the author.

    ReplyDelete
  16. This comment has been removed by a blog administrator.

    ReplyDelete
  17. Dear Admin, Preparing for OCAJP, need dumps. Please forward me full dumps over rajthakkar007@yahoo.co.in

    Thank you in advance.

    ReplyDelete
  18. hey need of Java 7- I dumps, kindly please do share with me at ashi2117@gmail.com

    ReplyDelete
  19. hello, This is ashish here, please assure me that these are the correct dumps, because voucher price is too costly.

    ReplyDelete
    Replies
    1. Hi Ashish,
      Surely these questions will be enough to pass the Java 7 Programmer I (1Z0-803) certification exams, provided you execute and understand all the given questions. I will not assure that you will be getting the exact questions, but sure that will be getting similar questions in the exam.

      Delete
    2. Hi Sandeep This is Siva Krishna I am looking to write 1Zo-808 can you please share me if you have any dumps for java 8 sivakrishna446@gmail.com

      Delete
  20. Hi admin, kindly share the dumps raviteja.gajarla@gmail.com.
    Thanks,

    ReplyDelete
  21. Hey Hi I Just want to know this questions are enough to clear the exam??????

    ReplyDelete
  22. Hi Sandeep i am going to take 1ZO-803.i am little bit worried.Although i have studied for this exam i am not confident.please give me some advice

    ReplyDelete
  23. Hi Sandeep,I am Preparing for OCAJP, need dumps. Please forward me full dumps on sayalikulkarni2020@gmail.com and guide me for exam.

    Thank you in advance.

    ReplyDelete
  24. Hey this dumps are not enough to clear the exam so please refer this question as practice, i clear the exam today only 15% dumps are from this blog

    ReplyDelete
    Replies
    1. Hi Nalin,

      As I mentioned so many times earlier, these are not the exact dumps, I am sure most of the questions might be of the same pattern as in this blog.

      "i clear the exam today only 15% dumps are from this blog":
      It depends on your luck how many exact questions you will get in the exam.

      My request to all of you is that, blindly don't go to exams assuming you will be getting same questions in exam (here some questions might be same but most of them will be of the similar pattern).

      Delete
  25. I can't access the questions on pages 2-7

    ReplyDelete
  26. This Blog helps a lot to prepare for the OCJP exam. Similar pattern of questions were asked with little higher complexity.

    ReplyDelete
    Replies
    1. Hi Swaroop,
      Happy to here that, these questions helped you to prepare your exams.

      As mentioned so many times, Request to all of you is that prepare well these questions, as Swaroop mentioned you will be getting the similar pattern questions. Please practice well before appearing for exams, It will definitely help to get through the OCA-7(1Z0-803) Certification.

      Thanks for giving the feedback.

      Delete
  27. Hi,

    I am taking SCJP test. Can you please email me the dumps to fenny.manohar@gmail.com

    Thanks in advance,
    Manohar

    ReplyDelete
  28. Can't view the other pages .. Could you please email me the dumps priyangarajvkr@gmail .com

    ReplyDelete
  29. Hi Sandeep,

    Could you please help me with dumps of OCJP 7 IZ0-805, please do reply.
    Thank you !

    ReplyDelete
  30. This comment has been removed by the author.

    ReplyDelete
  31. Only first page is visible......i don't have access to view other pages.....please help me out asap....

    ReplyDelete
  32. if anyone have oca java se 7 dumps, please send it to japitor000@gmail.com... please send it as soon as possible.... my certification is on next week.... kindly help me out.....

    ReplyDelete
  33. Hey, can you please forward the dumps at psanket.smart@gmail.com ?
    Thank you . :)

    ReplyDelete
  34. Hi Sandeep, Please send me the complete brain dumps. I can't access page 2 to 7. Or anyone who has OCA 1z0-803 please send them here goitsicandy@gmail.com

    ReplyDelete
  35. Hello everyone, I can't access page 2 to 7 either. Could anyone send me the OCA 1z0-803 brain dumps? (ricamn@hotmail.com)

    ReplyDelete
  36. Hi Sandeep, Please send me the complete brain dumps. I can't access page 2 to 7. Or anyone who has OCA 1z0-803 please send to me@ pckeshri@gmail.com

    Thanks in advance.

    ReplyDelete
  37. Usman Dahiru.
    This is actually good. Knowledge is mean for dissemination.

    ReplyDelete
  38. hi any one who took the exam recently , would kindly like to share his/her experience?

    iam confused should i go for Java should i go for Java SE6 or Java SE 7

    ReplyDelete
  39. Replies
    1. Hi, I do not understand the question 117. I knew that inside the main method you could not use the word ' this ' . Why the correct answers are A and D ?

      Delete
  40. Hi, I do not understand the question 117. I knew that inside the main method you could not use the word ' this ' . Why the correct answers are A and D ?

    ReplyDelete
  41. Hi,
    Could you please share latest ocjp 7 dumps to this mail id smanthiram@yahoo.com Thanks in advance.

    ReplyDelete
  42. Hi I am unable to access the dumps form page 2 onwards please help.me

    ReplyDelete
  43. hi Sandeep,

    could you please share the letest OCJP 7 dumps to rrsonu1190@gmail.com many thanks in advance...

    ReplyDelete
  44. For Question # 31, I feel the answer should be B. Y only, as the default constructor is asked and only class Y has it defined. Please confirm.

    ReplyDelete
  45. QUESTION 117
    Given the code fragment:
    class Test2 {
    int fvar;
    static int cvar;
    public static void main(String[] args) {
    Test2 t = new Test2();
    // insert code here to write field variables
    }
    }
    Which two code fragments, inserted independently, enable the code to compile?
    A. t.fvar = 200;
    B. cvar = 400;
    C. fvar = 200;
    cvar = 400;
    D. this.fvar = 200;
    this.cvar = 400;
    E. t.fvar = 200;
    Test2.cvar = 400;
    F. this.fvar = 200;
    Test2.cvar = 400;
    Correct Answer: AD


    For this the correct answers are A,B,E

    this keyword is inapplicable that leaves us with not selecting D as an answer

    ReplyDelete
    Replies
    1. This comment has been removed by the author.

      Delete
  46. QUESTION 136
    Given:
    public class Access {
    private int x = 0;
    private int y = 0;
    public static void main(String[] args) {
    Access accApp = new Access();
    accApp.printThis(1, 2);
    accApp.printThat(3, 4);
    }
    public void printThis(int x, int y) {
    x = x;
    y = y;
    System.out.println("x:" + this.x + " y:" + this.y);
    }
    public void printThat(int x, int y) {
    this.x = x;
    this.y = y;
    System.out.println("x:" + this.x + " y:" + this.y);
    }
    }
    A. x:1 y:2
    x:3 y:4
    B. x:0 y:0
    x:3 y:4
    C. x:3 y:4
    x:0 y:0
    D. x:3 y:4
    x:1 y:2
    Correct Answer: B wright?

    ReplyDelete
    Replies
    1. Absolutely right!!! Global variables are not being overwritten in printThis() method while printThat() method overwrites them.

      Delete
  47. Dear Sandeep Patange,
    thank you for this great blog, it added to me great value, is there a same blog for SE7 OCP dumps, how can i get a dump on my pc.. thank you in advance

    ReplyDelete
  48. QUESTION 117: the correct answer is either t.fvar = 200; cvar = 400;
    or t.fvar = 200; Test2.cvar = 400;
    which are the choices ABE not AD

    QUESTION 117
    Given the code fragment:
    class Test2 {
    int fvar;
    static int cvar;
    public static void main(String[] args) {
    Test2 t = new Test2();
    // insert code here to write field variables
    }
    }
    Which two code fragments, inserted independently, enable the code to compile?

    ReplyDelete
  49. QUESTION 104
    A: class Cc extends Bb { } is incorrect because Bb has default access modifier and in a different backage
    the correct answer is just D. class Cc extends Dd { }

    the correct answer is
    Given:
    package pkg1;
    class Bb { }
    public class Ee {
    private Ee() { }
    }
    package pkg2;
    final class Ww;
    package pkg3;
    public abstract class Dd { void m() { } }
    And,
    1. package pkg4;
    2. import pkg1.*;
    3. import pkg2.*;
    4. import pkg3.*;
    5. // insert a class definition here
    Which two class definitions, when inserted independently at line 5, enable the code to compile?
    A. class Cc extends Bb { }
    B. class Cc extends Ww { }
    C. class Cc extends Ee { }
    D. class Cc extends Dd { }

    ReplyDelete
  50. hey.. can any one send me dump for 803 I am planning to take the exam end of this month. ideally how long does it take to prepare for it..? kindly reply... thanks in advance..

    ReplyDelete
  51. can you please send me a Oracle Certified Associate, Java SE 7 Programmer I (1Z0-803) - OCA 7 Dumps at boa28@hotmail.com

    ReplyDelete
  52. Can u pls send me a dumps for 1Z0-803 OCA Exam at jeevaraj16@gmail.com

    ReplyDelete
  53. I am planning to take xam by the end of this month, can u please send me a dumps of 1z0-803 oca exam at shahbaz.alam01@gmail.com

    ReplyDelete
  54. Can you please send me a dumps for 1Z0-803 OCA Exam at rupeshkodilkar@gmail.com

    ReplyDelete
  55. I am taking the exam at end of this month, can u please send me a dumps of 1z0-803 oca exam at divjava345@gmail.com

    ReplyDelete
  56. Can you please send me a dumps for 1Z0-803 OCA Exam at sanketkumar38@gmail.com

    ReplyDelete
  57. Que no 11 option D is invalid option.
    The correct valid option is throws IOException in doSomething() and change IOException in catch block in main method....

    ReplyDelete
  58. I gave the exam today and cleared it.
    These questions were pretty useful. They do give us an idea of the real exam.

    ReplyDelete
  59. Please mail me the questions dumps at s indhupriya.199025@gmail.com
    I am attending an exam ocajp 1 tomorrow
    Need help asap

    ReplyDelete
  60. Can you please send me a dumps for Oracle Certified Associate, Java SE 7 Programmer I (1Z0-803) Exam at tsepotaje@gmail.com

    ReplyDelete
  61. Hi Sandeep,

    Could you please email me the dumps for Oracle Certified Associate, Java SE 7 Programmer I (1Z0-803) Exam at madala.priyambada@gmail.com.
    Thanks in advance .

    ReplyDelete
  62. Hi Sandeep,
    Can you please mail me the dumps for OCAJP 7(1Z0-803) and OCPJP 7(1Z0-804) email2sujai@gmail.com
    Thanks

    ReplyDelete
  63. Hi Sandeep,

    Would you be so kind and send me dumps for OCAJP and OCPJP to jakubinformatyk@gmail.com?
    Thanks in advance :-)

    ReplyDelete
  64. thank you your dumps helped me to clear the exam .please provide me 1Z0-804 dumps and if and book pdf available

    ReplyDelete
    Replies
    1. Congrats Shivangi.
      Thanks for providing your valuable feedback. I am trying for OCP(1Z0-804) dumps, if I get surely I will be sharing it.

      Cheers!!!

      Delete
    2. Hi Shivangi - Were the question in the exam same as its mentioned in this blog ? Please guide.

      Delete
  65. Hi Sandeep,
    Can you please mail me the dumps for OCAJP 7(1Z0-803) and OCPJP 7(1Z0-804) nisarnart@gmail.com
    Thanks in advance

    ReplyDelete
    Replies
    1. Hi,
      Can you please mail me the dumps for OCAJP 7(1Z0-803) and OCPJP 7(1Z0-804) rahulguptargrg02@gmail.com
      Thanks in advance

      Delete
  66. Please mail me OCAJP 7(1Z0-803) and OCPJP 7(1Z0-804) dumps on jssaini0046@gmail.com
    Thanks in advance

    ReplyDelete
  67. Can't access 2-7 pages...please provide access to those pages admin...

    ReplyDelete
  68. Can you please mail OCAJP 7(1Z0-803) dumps on dishantj4@gmail.com
    Thanks in advance

    ReplyDelete
  69. Hi Sandeep,
    Can you provide me access to all pages. I am unable to access all the pages.
    My email id is nitishkumar5343@gmail.com

    Please email me the dumb.

    ReplyDelete
  70. Hi Sandeep Sir, I am planning to write OCA 7 on 13 June , please can you mail me all related dumps for this exam at paliwallalit89@gmail.com ,I would be highly thankful to you. Please

    ReplyDelete
  71. please can u mail the ocpjp 7 and ocpjp 8 dumps to mohitdubey95@gmail.com. It's very urgent, I have my exam schedueled in five days. Would be grateful for your prompt response.

    ReplyDelete
  72. Hi Sir,
    Can you please mail me OCA 7(1z0-803) and OCP 7(1z0-804) dumps to
    abhilashpadhee@gmail.com.Will always be greatful for your reply.Thanks in advance..Abhi

    ReplyDelete
  73. This comment has been removed by the author.

    ReplyDelete
  74. hi sir, i am sivasankar. i scheduled OCA 7 exam on monday i have purchased dumps from brain dumps. but it contain lot of incorrect results. Whether i answer as per the dumps or original correct results?

    ReplyDelete
  75. Can you please email these questions to ghantanikitha@gmail.com

    ReplyDelete
  76. Hi Sir,
    Can you please mail me OCA 7(1z0-803) and OCP 7(1z0-804) dumps to
    rahulguptargrg02@gmail.com.Will always be grateful for your reply.Thanks in advance.

    ReplyDelete
  77. I am not able to access page 2-7.please help

    ReplyDelete
  78. Hi,could you please share ocajp7(1zo-803) dumps to chowdary.hema1729@gmail.com

    ReplyDelete
  79. can you please mail me OCAJP 7(1Z0-803) dumps on saymainamdar@gmail.com kindly do needful its very urgent.

    ReplyDelete
  80. Hello....this questions are really very helpfull..today i gave exam and and clear it too...about 55% of qustions in real exam are same or realated...thank you so much sandeep...

    ReplyDelete
  81. guys dont miss to solve all the 150 questions before attempting exam..i am you all definitely clear exam.

    ReplyDelete
  82. Can anyone provide explanation for question 73?

    ReplyDelete
  83. Can you mail the dumps to npnithintin@gmail.com

    ReplyDelete
    Replies
    1. Are you got the dumps please mail to sankalpapathirana@gmail.com

      Delete
  84. dumps nedded. please help. iprezime969@gmail.com thank you very much.

    ReplyDelete
  85. Hi Sandeep,

    Could you please email me the dumps for Oracle Certified Associate, Java SE 7 Programmer I (1Z0-803) Exam at prabirh@gmail.com.
    Thanks in advance .

    ReplyDelete
  86. hi sandeep,
    please mail it to me also,
    luckydarling242@gmail.com

    ReplyDelete
  87. hello sandip
    can you email me the dumps of Java SE7 programmer 1

    1z-803 dumps
    email. me-vkrmsingh2008@gmail.com

    ReplyDelete
  88. This comment has been removed by the author.

    ReplyDelete
  89. can u please mail me dumps for ocajp bharath628@gmail.com

    ReplyDelete
  90. Great Job sandeep ! i appreciate it. Can you forward me the dumps for SE 7 OCA AND OCP ie 803 and 804 to sriramsatwik3@live.com

    ReplyDelete
  91. Hello
    I can't access page 2-7. Please help me.

    ReplyDelete
  92. This comment has been removed by the author.

    ReplyDelete
  93. Hi Admin, I want to access all the pages, please allow me to access all pages. Your blog is really helpful

    ReplyDelete
  94. Hi. How to get access to all the pages. Plz let me know

    ReplyDelete
  95. Hi Friends,
    Some of you are having complaint that not able to access all the pages of this blog. But there are no restrictions kept on any page of this blog. If you are not able to access, please try in the different browsers.

    ReplyDelete
  96. Hi Sandeep,
    I am giving SE 8 - 808 exam after 2 days. Do you have any dumps for that?

    ReplyDelete
  97. Hi Sandeep,
    Can you help me with the dump for SE 808 exam? I have the test on 18th and this dump is quite useful.

    ReplyDelete
  98. Hi Sandeep,
    Could you email me SCJP associate dumps IZO-803 and 805 on vipulreddy574@gmail.com. Thanks.

    ReplyDelete
  99. Hi all,
    Can anyone please send SE7 IZO-803 dumps to r.latha4u@gmail.com
    Thanks in Advance..

    ReplyDelete
  100. This comment has been removed by the author.

    ReplyDelete
  101. Hi Sandeep! Can you please email me the dumps @ parikshith.kulkarni@gmail.com.
    Thanks!

    ReplyDelete
  102. Hi all,

    Can anyone please send SE7 IZO-803 dumps to sathishsatz.r@gmail.com

    Thanks in Advance..

    ReplyDelete
  103. This comment has been removed by the author.

    ReplyDelete
  104. i am a newbee... i have a question after buying the voucher within how much time do we have to appear for the exam... is the date fixed by ORACLE or is it flexible to our convinience? please someone answer..

    ReplyDelete
  105. Hi Sandeep,
    Can u please send me the dump for 1Z0-803 @ban.ritu00@gmail.com

    ReplyDelete
  106. HII SANDEEP CAN U PLEASE SEND ME DUMPS CA/OCP Java SE 7 1Z0-803 & 1Z0-804)

    ReplyDelete
  107. Hi iam Vamsi can u please send me the oca/ocp java se7 dumps. I selected for ntt data company they asks me to do certification i have only limited time to do it.so, please send the dumps to gaddamvamsi.cse@gmail.com

    ReplyDelete
    Replies
    1. Did you clear the exam. Even I am selected for NTT data

      Delete
  108. Hi Sandeep... Can u please share the 1z0-803 dumbs over mail to amittomar619@gmail.com. I need to give exam this week only... so much needed.

    ReplyDelete
  109. Hi Sandeep!

    Does the last years dumps question are valid for this year to please reply soon i have exam on tommorow.

    ReplyDelete
  110. Hi Sandeep

    Could you please send me 1Z0-803 dumps to below mail id. I will be writing exam on next Monday (5 days left).

    somireddy.ravikanth@gmail.com

    ReplyDelete
  111. Hi Sandeep,

    Can you share the 1z0-803 dumps at : speakonlytruthyodadoes@gmail.com

    ReplyDelete
  112. I have just completed my OCA exam. I got hardly 30 questions from dumps. I was bit harder. I passed with 71%. Thanks.

    ReplyDelete
    Replies
    1. Amar, Congrats for clearing the OCA Certification.

      As I said earlier, don't expect all 70 exact questions from the list. As you said you got 30 questions right from here, the rest will be covered by practicing all the questions here, there will be slight changes in questions with same concept.

      Practice is the only mantra which will boost your confidence & knowledge(scoring).

      Happy Certification.:)

      Delete
  113. Not able to view after 19 questions . Plese mail me at abhishekshah0901@gmail.com .

    ReplyDelete
  114. QUESTION 9
    Given the code fragment:
    Int [] [] array = {{0}, {0, 1}, {0, 2, 4}, {0, 3, 6, 9}, {0, 4, 8, 12, 16}};
    Systemout.printIn(array [4] [1]);
    System.out.printIn (array) [1][4]);
    int [] [] array = {{0}, {0, 1}, {0, 2, 4}, {0, 3, 6, 9}, {0, 4, 8, 12, 16}};
    System.out.println(array [4][1]);
    System.out.println(array) [1][4]);
    What is the result?
    A. 4 Null
    B. Null 4
    C. An IllegalArgumentException is thrown at run time
    D. 4 An ArrayIndexOutOfBoundException is thrown at run time

    The Correct Answer is mentioned as : D.
    IS this correct ?
    The statement Int [] [] array = {{0}, {0, 1}, {0, 2, 4}, {0, 3, 6, 9}, {0, 4, 8, 12, 16}}; is not correct
    -Int is not valid int is correct
    -int [] [] array is a 2D array but the statement initialize a 5D array. is this possible?
    shouldn't this be compiler error?

    ReplyDelete
  115. Can you please mail OCAJP 7(1Z0-803) dumps on shackleburst@gmail.com
    Thanks in advance. I am not able to access from page 2 to 7.

    ReplyDelete
  116. Can you please mail OCAJP 7(1Z0-803) dumps on shackleburst@gmail.com
    Thanks in advance. I am not able to access from page 2 to 7.

    ReplyDelete
  117. Hi Can someone please provide me the OCAJP 7(1Z0-803) on indra1983_bi@yahoo.co.in

    ReplyDelete
  118. Can you plz provide me the access from page 2 onwards

    ReplyDelete
  119. Hi all
    these dumps are enough for Clear OCAJP 7(1Z0-803) certification

    ReplyDelete
  120. i cant access page 2 onwards

    ReplyDelete
  121. Hi Sandeep

    Could you please send me 1Z0-803 dumps to below mail id: -
    anshul.jain.sun@gmail.com

    Thank you.

    Kind Regards,
    Anshul Jain

    ReplyDelete
  122. Hi Sandeep .Do u have dumps for OCA SE 5/6 1Z0-850.
    If possible please mail me at ashishchoudhary986@gmail.com

    ReplyDelete
  123. in ans 104) only D) option is correct cause A) option will generate compile time error cause class Bb is not public ..!

    ReplyDelete
  124. Hi Sandeep, Do you have dumps for OCAJP7 (1Z0-803). I have exam in next 2 weeks. If possible could you please mail me at smh1739@yahoo.com

    ReplyDelete
  125. Hello Sir can u provide me with the latest dumps if possible i have exam in coming week, it will be of great help
    chandu.cell@gmail.com please mail me the latest dumps if possible Thanks a lot

    ReplyDelete
  126. Hello sir, I am taking oca exam can you please mail me the dumps at rakhishri3@gmail.com. also, have you guys cleared the exam using dumps. Please mail me websites that provide legit dumps..

    ReplyDelete
  127. Hi Sandeep,

    Could you please email me the latest dumps for Oracle Certified Associate, Java SE 7 Programmer I (1Z0-803) Exam to kruz.kallem@gmail.com

    ReplyDelete
  128. Hi All,
    Anyone send me the latest OCAJP7 (1Z0-803) dump to mathes89.be@gmail.com

    ReplyDelete
  129. Hi Sandeep,

    Could you please email me the dumps for Oracle Certified Associate, Java SE 7 Programmer I (1Z0-803) Exam at ale.fvaras@gmail.com
    Thanks in advance .

    ReplyDelete
  130. Hi All!
    I am going for OCJP 1Z0803 on 17 October, 2017
    I have gone through Kathy Sierra Book.
    Please provide me dumps to practice questions.
    My Email ID: nitjnavdeep@gmail.com
    Thanks!

    ReplyDelete
  131. HI SANDEEP
    i am not able to access pages other than page1 can you please help me here. Thanks

    ReplyDelete
  132. Hey Sandeep !!!
    I am unable to access the questions.
    Can you please mail me the dumps on akashbansal2107@gmail.com ?

    Thanks alot !!!

    ReplyDelete
  133. hi Sandeep, can you please mail me latest dumps for 1ZO-803(Java SE 7 Programmer 1) at geetika.5526@gmail.com

    Thanks in Advance

    ReplyDelete
  134. I can't access other pages 2-7

    ReplyDelete
  135. Not able to access all the questions

    ReplyDelete
  136. HI,
    Could you please mail me the dumps for ocajp 7(1Z0-803) and ocpjp 7(1Z0-804).
    id: santhoshdidigam0@gmail.com
    Thanks in advance.

    ReplyDelete
  137. Thanks for sharing this good blog. It's very interesting and useful for students
    Java Online Course

    ReplyDelete
  138. HI,
    Could you please mail me the dumps for ocajp 7(1Z0-803) and ocpjp 7(1Z0-804).
    id: santhoshdidigam0@gmail.com
    Thanks in advance.

    ReplyDelete
  139. This comment has been removed by the author.

    ReplyDelete
  140. Can you please mail me the dumps for both OCAJP 7(1Z0-803) and OCPJP 7(1Z0-804) tekurusrinath999@gmail.com

    ReplyDelete
  141. Can you please mail me the dumps for both OCAJP 7(1Z0-803) and OCPJP 7(1Z0-804) yrkleo@gmail.com

    ReplyDelete
  142. Hi, Sandeep
    Can you please mail me the dumps for both OCAJP 7(1Z0-803) and OCPJP 8(1Z0-808) ragavi1985.27@gmail.com
    Thanks in advance.

    ReplyDelete
  143. Keep up the good work. Your blog is very informative and helpful. Waiting for more posts.
    java training

    ReplyDelete
  144. I am not getting access of other pages.Blogger says your account does not have access.
    Please Mail me all questions at
    pratikgadge11@gmail.com
    Thanks in advance

    ReplyDelete
  145. VMCE_V9 exam questions was so simple and detailed that I pass my Veeam Certified Engineer VMCE_V9 exam in first attempt. Get most Updated VMCE_V9 Questions with 100% accurate answers. VMCE_V9 Study material brought me the 100% success so I suggest the same for all IT candidates of all type of IT certifications exams preparation material.

    ReplyDelete
  146. Can anyone send me questions to nrtheja@gmail.com, please.. Dumbs for OCJP

    ReplyDelete