Harminal:Im also told that when draw occurs it clears the screen. After that anything else drawn doesnt appear??True or false??
Your game is an endless loop of update and draw calls.
Update runs, and you code anything you want to happen there.
Draw is then called, and you draw everything that is occurring in your game state.
The first call in the draw function is a call to clear the screen and the depth buffer. You can remove this call if you want, but you want the screen to be cleared most of the time before you start drawing new stuff. Especially the depth buffer.