Is it possible to find out what theme a specific web site is using? [closed]

You could probably view source and find out where the main stylesheet is located. Most likely it will look something like this:

<link rel="stylesheet" type="text/css" media="all" 
href="http://sitename.com/wp-content/themes/theme-name/style.css" />

Where theme-name is the name you are probably looking for. Cheers.