Course Solutions Uncategorized (Solved) : 1 Show Printed Screen Program Executed 20 Points Public Class Oneb Public Static Void Main Q38228668 . . . .

(Solved) : 1 Show Printed Screen Program Executed 20 Points Public Class Oneb Public Static Void Main Q38228668 . . . .

 

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

OR

PayPal Gateway not configured

OR

PayPal Gateway not configured

Leave a Reply

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

Related Post