Computer Science, asked by azizjuraev1999, 1 month ago

Please fill in t he execution result of the program in the blank
public class IdentifyMyParts {
public static int x = 7;
public int y = 3;
}
public class Test {
public static void main(String[] args) {
IdentifyMy Part s a = new IdentifyMyParts ();
IdentifyMyParts b = new IdentifyMyParts ();
a .y =
b.y = 6;
a.x = 1;
b.x = 2;
System.out.println( a.y = + a. out put is 1
System.out.println( b.y = + b. out put is 2
System.out.println( a.x = + a. out put is 3
System.out.println( b.x = + b. out put is 4
}

Answers

Answered by drpramodmane30
0

Answer:

from which class it is tell

Similar questions