Medium
What does this code return ?
public abstract class A {
public abstract void talk();
}
public class B extends A {
public void talk() {
echo "Hello !"
}
}
A a = new B();
a.talk();
Author: SamuelStatus: PublishedQuestion passed 141 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!