Consider the following code:

class a
{
int a;
void b()
{
int v;
}}
Here a is an instance variable. Every object created from this class will have its own copy of a. Instance variables are...