| preferred AP College board partner for AP classes
AP Computer Science A/Unit 9: Inheritance
Start Practice TestPractice Test
About Exam
hard Solved by 1 students
Inheritance and Method Overloading
< Prev
Next >

What is the output when the main method is executed?

class Base {
    public void test(int a) {
         System.out.print("Base");
    }
}

class Derived extends Base {
    public void test(double a) {
         System.out.print("Derived");
    }
}

public class Test {
    public static void main(String[] args) {
         Base b = new Derived();
         b.test(5);
    }
}
A

Compilation Error

B

BaseDerived

C

Derived

D

Base

Hint
Did You Know?
Explain Why
Explain All Answers
Check Answer
Show Correct Answer
Report Question

Question Leaderboard

Not enough data yet to show leaderboard.

No comments yet. Be the first to comment!

AI Tutor

How can I help?

APFIVE © 2020.
Email: [email protected]|Privacy Policy