Certification Practice Exams!
HOME | NEWS | ARTICLES | CERTIFICATIONS | QUIZZES | PRACTICE TESTS | BOOKS | TRAINING | FAQ | FREEBIES
CERTIFICATION PRACTICE QUIZZES
Certification Advisor
Cost Calculator
CERTIFICATION WATCH
Get the latest certification news by email!

First name:


Last name:


*Your email address:


*Enter this security code:

FREE PUBLICATIONS:
More Titles...
OUR OTHER SITES:

GoExam: Certification practice tests with free demos to download.

GoTraining: Get Training on what you need.

CertificationBooks: Find the certification book you're looking for.

SearchCertify: links, links and more certification links!

NoMoreMalls: All of the shopping, none of the hassles.

Cheap Web Tricks: No cost or low cost tools for the frugal Webmaster.












Sun Certified Java Programmer (SCJP) Practice Quiz

Question 3:

Given the following code, what will be the output?

class Value
{
    public int i = 15;
}
public class Test
{
    public static void main(String argv[])
	{
        Test t = new Test();
        t.first();
    }
    public void first()
    {
        int i = 5;
        Value v = new Value();
        v.i = 25;
        second(v, i);
        System.out.println(v.i);
    }
    public void second(Value v, int i)
    {
        i = 0;
        v.i = 20;
        Value val = new Value();
        v =  val;
        System.out.println(v.i + " " + i);
    }
}

A. 15 0
    20
B. 15 0
    15
C. 20 0
    20
D. 0 15
    20

View the explanation

next
COBIT  e-learning is available





(c) Copyright 1998-2008 Anventure. All Rights Reserved.
contact us | advertise | privacy policy