Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

What is the output of the following code? IN JAVA public class hw1{ public static void main(String[] args) { System.out.println(new A()); System.out.println(new B()); } }

What is the output of the following code?

IN JAVA

public class hw1{ public static void main(String[] args) { System.out.println(new A()); System.out.println(new B()); } } public class A { public int i; public A() { i = 1; } public String toString() { return String.format("2 %d", i); } } public class B extends A { public B() { i = 3; } public String toString() { return String.format("4 %d", i); } } 

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored 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

Question

4. Explain why strategic planning is important to all managers.

Answered: 1 week ago

Question

Discuss communication challenges in a global environment.

Answered: 1 week ago