Consider the following class definition and answer the following question. public class MyClass { /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)B 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 output created from the following segment written in the main method: MyClass Object1 = new MyClass( ); MyClass Object2 = new MyClass( 15, 20); Object1.ShowNumbers(); Object2. ShowNumbers();

Microsoft Visual C#
7th Edition
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Joyce, Farrell.
Chapter9: Using Classes And Objects
Section: Chapter Questions
Problem 19RQ
icon
Related questions
Question
Consider the following class definition and answer the following question.
public class MyClass
{ /fields
private int x;
private int y;
Ilconstructors
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)B
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 output created from the following segment written in the main method:
MyClass Object1 = new MyClass( );
MyClass Object2 = new MyClass( 15, 20);
Object1.ShowNumbers();
Object2. ShowNumbers();
Transcribed Image Text:Consider the following class definition and answer the following question. public class MyClass { /fields private int x; private int y; Ilconstructors 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)B 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 output created from the following segment written in the main method: MyClass Object1 = new MyClass( ); MyClass Object2 = new MyClass( 15, 20); Object1.ShowNumbers(); Object2. ShowNumbers();
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 3 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,