1) Show what is printed on the screen when this program isexecuted.
20 points
public class OneB {
public static void main(String [] args) {
Band b0 = new Band();
b0.name = “TheShins”;
b0.age = 2;
Band b1 = new Band();
b1.name = “GreenDay”;
b1.age = 35;
System.out.println(b0.count);
Band b2 = new Band();
b2.name = “X”;
b2.age = 10;
System.out.println(“Names: ” + b0.name + ” ” + b1.name + ” ” +b2.name);
System.out.println(Band.count);
b1 = b2;
b1.age = 7;
b0.age = b2.age + b0.age;
System.out.println(“Ages = ” + b0.age + ” ” + b1.age + ” ” +b2.age);
}
}
class Band {
String name;
int age;
static int count = 1;
Band() {
count = count + 3;
}
}
Expert Answer
An answer will be send
PayPal Gateway not configured
PayPal Gateway not configured