Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Analyze the following code: public class Test { public static void main(String[] args) { B b = new B(); b.m(5); System.out.println(i is + b.i);

Analyze the following code: public class Test { public static void main(String[] args) { B b = new B(); b.m(5); System.out.println("i is " + b.i); } } class A { int i; public void m(int i) { this.i = i; } } class B extends A { public void m(String s) { } }

Select one:

A.

The method m is not overridden in B. B inherits the method m from A and defines an overloaded method m in B.

B.

The program has a compile error, because b.m(5) cannot be invoked since the method m(int) is hidden in B.

C.

The program has a runtime error on b.i, because i is not accessible from b.

D.

The program has a compile error, because m is overridden with a different signature in B.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions