class ABC
{
int i;
void display()
{
System.out.println(i);
}
}
class B extends ABC
{
int i;
void display()
{
System.out.println(j);
}
}
class demo
{
public static void main(String args[])
{
B obj = new B();
obj.i=1;
obj.j=2;
obj.display();
}
}
Answers
Answered by
0
Answer:
Work with the Info panel
The Info panel shows the color values beneath the pointer and, depending on the tool in use, gives other useful information. The Info panel also displays a hint on using the selected tool, gives document status information, and can display 8‑bit, 16‑bit, or 32‑bit values
Similar questions