Static & Non-Static keywords.
Let's say we have one class named Cat.
The Cat class is having two non-static attributes & one non-static method.
So to access or call the non-static methods & attributes we have to create the instance of class Cat.
Now I'm creating a private s...