Do the following instruction using java.
1. Create a class called LightSwitch
2. Create a private Boolean property in LigthSwitch called Light
3. Add a public method in the LightSwitch class called isON
4. In the isON method make the Light property to TRUE
5. Add another public method in the...