Click here to Skip to main content
15,881,380 members
Please Sign up or sign in to vote.
1.00/5 (10 votes)
See more:
Q1
What can directly access and change the value of the variable roomNr?
Java
package com.mycompany;
 
public class Hotel {
public int roomNr = 100;
}


A) Only the Hotel class.
B) Any class.
C) Any class in com.mycompany package.
D) Any class that extends Hotel.
_____

Q2
Given:
d is a valid, non-null java.util.Date object
df is a valid, non-null java.text.DateFormat object set to the current locale.
What outputs the current locale's country name and the appropriate version of date?
A)
Java
Locale l = Locale.getDefault();
System.out.println(l.getDisplayCountry() + " " + df.format(d));

B)
Java
Locale l = Locale.getLocale();
System.out.println(l.getDisplayCountry());

C)
Java
Locale l = Locale.getLocale();
System.out.println(l.getDisplayCountry() + " " + df.setDateFormat(d));

D)
Java
Locale l = Locale.getDefault();
System.out.println(l.getDisplayCountry() + " " + df.setDateFormat(d));

_____

Q3
What is true about objects referenced by a, b, aa at the line labeled "// some code goes here"?
Java
class A {
    private B b;
    public A() {
        this.b = new B(this);
    }
}

class B {
    private A a;
    public B(A a) {
        this.a = a;
    }
}

public class Test { 
    public static void main(String args[]) {
        A aa = new A();
        aa = null;
        // some code goes here
    }
}

A) The objects referenced by a and b are eligible for garbage collection.
B) None of these objects are eligible for garbage collection.
C) Only the object referenced by "a" is eligible for garbage collection.
D) Only the object referenced by "b" is eligible for garbage collection.
E) Only the object referenced by "aa" is eligible for garbage collection.
_____

Q4
What do you need to do to correct compilation errors? (Select two)
Java
public class Creature {
private int legCount;
private int wingCount;

public Creature(int legCount) {
this.legCount = this.legCount;
this.wingCount = 0;
}

public String toString() {
return "legs=" + this.legCount + " wings=" + wingCount;
}
}

public class Animal extends Creature {
public Animal(int legCount) {
this.wingCount = 0;
}

}

A) insert a call to super() into Creature constructor.
B) insert a call to super() into Animal constructor.
C) insert a call to this() into Animal constructor.
D) insert a call to super(legCount) into Animal constructor.
E) change the wingCount variable in the class Creature to protected.
F) change the string "this.wingCount = 0" in the class Animal to "super.wingCount = 0"
Posted
Updated 24-Jan-13 0:58am
v6
Comments
Nagy Vilmos 24-Jan-13 6:47am    
This, and the other two 'questions' are very dubious and appear to be homework.
I will delete the other two and move them here.
Nagy Vilmos 24-Jan-13 6:59am    
That's four questions you've asked. These are very simple Java principles, please re-read your course books and speak to your teacher if you cannot do these problems.
H.Brydon 11-Mar-13 20:33pm    
Just curious ... where is your school?

We do not do your homework: it is set for a reason. It is there so that you think about what you have been told, and try to understand it. It is also there so that your tutor can identify areas where you are weak, and focus more attention on remedial action.

Try it yourself, you may find it is not as difficult as you think!
 
Share this answer
 
Comments
Nagy Vilmos 24-Jan-13 7:45am    
This is why I put all four together, it's a POP.
OriginalGriff 24-Jan-13 7:52am    
Pathetic Original Poster! :laugh:
Uhm... Yeah.
Easy stuff,

Q1: b)
Q2: a)

Aaah, I just seen Nagys POP comment.
No. I don't do your homework.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900