Computers and Technology

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();

answer
Answers: 3

Other questions on the subject: Computers and Technology

image
Computers and Technology, 22.06.2019 23:50, Crull5999
List a few alternative options and input and output over the standerd keyboard and monitor. explain their functioning in details.
Answers: 2
image
Computers and Technology, 23.06.2019 04:31, mona92
Which of the following is not a way in which trees benefit the environment? a. they remove a significant amount of carbon dioxide from the atmosphere. b. they remove a significant amount of oxygen from the atmosphere. c. their roots hold soil in place, reducing rates of erosion. d. they remove ozone and particulates from the atmosphere. select the best answer from the choices provided a b c d
Answers: 1
image
Computers and Technology, 24.06.2019 16:50, genyjoannerubiera
Ramp charts are generally created in wordlotusexcelpowerpoint
Answers: 1
image
Computers and Technology, 24.06.2019 17:00, mrsrobinson1014
What are some examples of what can be changed through options available in the font dialog box? check all that apply. font family italicizing bolding pasting drop shadow cutting character spacing special symbols
Answers: 2
Do you know the correct answer?
Consider the following classes:

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

Questions in other subjects:

Konu
Mathematics, 05.05.2020 21:05