subject

Consider the following classes:

public class First {
public void method2() {
System. out. println("First2");
}

public void method3() {
method2();
}
}

public class Second extends First {
public void method2() {
System. out. println("Second2");
}
}

public class Third extends Second {
public void method1() {
System. out. println("Third1");
super. method2();
}

public void method2() {
System. out. println("Third2");
}
}

public class Fourth extends First {
public void method1() {
System. out. println("Fourth1");
}

public void method2() {
System. out. println("Fourth2");
}
}
Suppose the following variables are defined:

First var1 = new Second();
First var2 = new Third();
First var3 = new Fourth();
Second var4 = new Third();
Object var5 = new Fourth();
Object var6 = new Second();

Indicate below the output that would be produced by each statement shown. If the statement produces more than one line of output, indicate the line breaks with slashes as in a/b/c to indicate three lines of output with a followed by b followed by c. If the statement causes an error, write the word error to indicate this.

var1.method2();
var2.method2();
var3.method2();
var4.method2();
var5.method2();
var6.method2();
var1.method3();
var2.method3();
var3.method3();
var4.method3();
var5.method3();
var6.method3();
((Second) var4).method1();
((Third) var4).method1();
((Second) var5).method2();
((First) var5).method3();
((Third) var5).method1();
((First) var6).method3();
((Second) var6).method1();
((Second) var6).method3();

ansver
Answers: 3

Other questions on the subject: Computers and Technology

image
Computers and Technology, 23.06.2019 11:50, itaheart101
While preforming before operation pmcs, you notice the front right tire appears slightly under-inflated. what is the proper action?
Answers: 3
image
Computers and Technology, 23.06.2019 15:30, taapeters
Brian wants to conduct an online search with a certain phrase. he intends to use the words books that belong to the 1800s in his search. how should he use the word that in his search?
Answers: 1
image
Computers and Technology, 23.06.2019 16:10, alexis9658
What is the ooh? a. omaha occupation handbook b. online occupational c. occupations online d. occupational outlook handbook select the best answer from the choices provided
Answers: 3
image
Computers and Technology, 23.06.2019 18:40, brooklyn4932
How does is make you feel when you're kind to others? what are some opportunities in your life to be more kind to your friends and loved ones? imagine a world where kindness has be outlawed. how would people act differently? would your day-to-day life change significantly? why or why not?
Answers: 2
You know the right answer?
Consider the following classes:

public class First {
public void method2() {
...

Questions in other subjects:

Konu
Business, 16.04.2020 08:28
Konu
Mathematics, 16.04.2020 08:28