Consider the following class definition and answer the following questions: public class MyClass { /fields private int x; private int y; Ilconstructors public MyClass() {x = 0; y = 0; public MyClass(int a, int b) {x = a3; y = b; } I/methods public void ShowNumbers() { System.out.printlin(x +* public void setx(int a) { x = a; } public void sety(int b) {y = b; public int getx() { return x; public int gety() { return y; public int getsum() { return (x + y): } public int getproduct() { return x*y; } Give the outputs of the following segments written in the main method: a) MyClass Object1= new MyClass(12, 15); System.out.printin(Object1.getx() +* + Object1.gety()); b) MyClass Object2= new MyClass( ); Object2.setx(5); Object2.sety(8); Object2.ShowNumbers( ); System.out.printin(Object2.getsum() - +Object2.getproduct());

Microsoft Visual C#
7th Edition
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Joyce, Farrell.
Chapter10: Introduction To Inheritance
Section: Chapter Questions
Problem 20RQ
icon
Related questions
Question
Consider the following class definition and answer the following questions:
public class MyClass
{ I/fields
private int x;
private int y;
llconstructors
public MyClass()
{x = 0;
y = 0;
}
public MyClass(int a, int b)
{x = a;
y = b;
I/methods
public void ShowNumbers()
{ System.out.printin(x
+ y);
public void setx(int a)
{ x = a;
public void sety(int b)
{y = b;
public int getx()
{ return x;
public int gety()
{ return y;
public int getsum()
{ return (x + y);
}
public int getproduct()
{ return x*y;
Give the outputs of the following segments written in the main method:
a) MyClass Object1= new MyClass(12, 15);
System.out.printin(Object1.getx() +* *+ Object1.gety();
b) MyClass Object2= new MyClass( );
Object2.setx(5);
Object2.sety(8);
Object2.ShowNumbers( );
System.out.printin(Object2.getsum() +
+Object2.getproduct());
Transcribed Image Text:Consider the following class definition and answer the following questions: public class MyClass { I/fields private int x; private int y; llconstructors public MyClass() {x = 0; y = 0; } public MyClass(int a, int b) {x = a; y = b; I/methods public void ShowNumbers() { System.out.printin(x + y); public void setx(int a) { x = a; public void sety(int b) {y = b; public int getx() { return x; public int gety() { return y; public int getsum() { return (x + y); } public int getproduct() { return x*y; Give the outputs of the following segments written in the main method: a) MyClass Object1= new MyClass(12, 15); System.out.printin(Object1.getx() +* *+ Object1.gety(); b) MyClass Object2= new MyClass( ); Object2.setx(5); Object2.sety(8); Object2.ShowNumbers( ); System.out.printin(Object2.getsum() + +Object2.getproduct());
Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT