Leave a Reply 10

Your email address will not be published. Required fields are marked *


Shadow

Shadow

1

d,jgadjkcgadj

d,jgadjkcgadj

yes ryt answer

MUKESH GUPTA

MUKESH GUPTA

1Z0-803
Yeah! Just completed 1Z0-803 exam few days ago! Scored 92% (the passing line is 63% now)!!

I had 70 questions in my actual 1Z0-803 test.

Most of the questions are on Giving Code … tell the result, insert CODE, choose the best option …etc.

Only few questions on Java: advantages of the Java exception mechanism, benefits of using ArrayList over array, valid types for switch, Java Exception classes, two-dimensional array, improve the encapsulation of a class, java class declaration … and so on.

Learned valid 1Z0-803 dumps from PassLeader (http://www.passleader.com/1z0-803.html) (272q VCE and PDF), almost all questions were same as my 1Z0-803 exam, valid enough for passing until now!

renko

renko

Answer: A
Edited code question:

public class Marklist {
static int count = 0; //counts instances
{count++;} //counts created objects
int num;
public static void graceMarks(Marklist obj4) {
obj4.num += 10;
}
public static void main(String[] args) {
Marklist obj1 = new Marklist();
Marklist obj2 = obj1;
//Marklist obj2 = new Marklist();//obj1;
//Marklist obj1 = null; //Generates error
obj2.num = 60;
graceMarks(obj2);
System.out.println(“Created objects: “+count);
}

}
Output:
1

appsstuff

appsstuff

Compilation Error
Many mistakes in this question
Class name Marklist instead of MarkList

Marklist obj1 = null; //Generates error