You can see all running programs by the command:
$ ps aux
use a pipeline to make it easier to read or grep particular program that you want to see like this:
$ ps aux | less
$ ps aux | grep something
it will show you the Process ID of a running program. If you want to stop it(coz it freezed?) just kill the process ID like this:
$ kill <a Process ID>
Hope this help