Question 27 of 76 from exam 1Z0-808: Java SE 8 Programmer I

Question 27 of 76 from exam 1Z0-808: Java SE 8 Programmer I

Question

Given:

class A (
public AQ {
System.out.print ("A ")i

)
}

class B extends Af
public B(){ //line ni
System.out.print ("B ");
}
}

class C extends B{

public c(t //line n2
System.out.print("C ")i

3

public static void main(string[] args) {
Co = new c0:

}

What is the result?

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D.

C.