You're not the first with that kind of question. Therefor there are a lot of topics about it.
"Any fool can write code that a computer can understand. Good programmers write code that humans can understand." --- Martin Fowler
Please correct my English.
Coupling means that one class gets at the implementation of another class.
For example:
The Car class has allowed access to its speed field and the Driver class changes its value directly. This means other classes gain access to the implementation of the Car class; any changes to that implementation will "break" the Driver class. This is "tight coupling"
I can say INHERITANCE is something like related Coupling in which both the classes i.e Subclass and Superclass know about each other.
Correct ?
yes I think so. But super class doesn't know anything about subclass implementation, its only subclass that know everything about public and protected members of superclass.