Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

What is the output of the following code? public class MyClass { static int num = 2 0 ; private String name; public MyClass (

What is the output of the following code?
public class MyClass {
static int num =20;
private String name;
public MyClass(int num, String name){
System.out.print(num);
this.num = num;
this.name = name;
}
static int getNumber(){
return num;
}
}
class YourClass extends MyClass {
static int num =7:
private String name:
public YourClass(int num. String name){
super(num, name);
System.out.print(num);
} static int getNumber(){
return num:
}
public static void main(String[] args){
MyClass y = new YourClass(9, "MyName"):
YourClass x = new YourClass(8. "MyName"): System.out.println(y.getNumber());
}
Select one:
a.99887
O
b. Code contains errors
O
c.209887
d.9920208

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_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

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

Get Started

Recommended Textbook for

Practical Issues In Database Management A Refernce For The Thinking Practitioner

Authors: Fabian Pascal

1st Edition

0201485559, 978-0201485554

More Books

Students also viewed these Databases questions