Computer Science, asked by arnabmondal167, 5 months ago

b. Consider the following code and answer the questions that follow.
public class academic
{
private int admno;
private String name;
private static count;
public academic(int admno, String name)
{
this.admno=admno;
this.name=name;
++count;
}
public static void main()
{
int a =1001;
String b="ANITA";
academic ob=new academic(a,b);
a=1010;
String b="AJAY”;
academic obl=new academic(a,b);
System.out.println(obl.count);
}
}
i) List the objects of class academic.
ii)List the class variables, instance variables and local variables used
in the program.
iii) Give the output​

Answers

Answered by nidhipan2501
0

Answer:

CJ Wilson is tee shirt to kya.

Similar questions